I'm building a mountable engine that is dependent on another 'core' (unmounted) engine that I have written.
In my container app's Gemfile I add the core engine and the optional engine's git repo's.
In my mountable engine, where should I add its dependencies on the 'core' engine to be used in the dummy app for testing? (rspec)
I tried adding this in the mountable engine's gemspec:
require "my_core"
...
s.add_dependency "my_core", :git => "https//github.com/me/my_core.git"