I'm writing a rails engine that has some dependencies. I've specified the dependencies in the gemspec and the engine is finding them when I run bundle install (i.e. Gemfile.lock looks correct). When I want to use the plugin in a Ruby file, I can do so but need to explicitly require dependency-name at the top of the file.
However, when I want to use the dependency's asset pipeline, sprockets can't find it.
The app I'm using (for now) is the dummy app that comes in a rails plugin's test folder. Sprockets can find the assets if I specify them in the engine's Gemfile (which is really the dummy app's Gemfile), but not if I specify them in the gemspec. I don't want to rely on the Gemfile because that means that any app that uses my plugin will need to manually add all my dependencies to their Gemfile. For the same reason I don't want a solution that involves updating the app's config file.
This works (in a ruby file) when dependency is included from gemspec:
`require 'dependency-name'`
but this (in a JS file) doesn't work when dependency is included from gemspec:
`//= require 'dependency-name'`
Neither require is needed when dependency is included from Gemfile. I think it's pretty clear but let me know if you need more specifics.