I find this problem a little funky, and need more sets of eyes. I'm making a super simple gem that makes the backbone.eventbinder.js file available to the Rails app that requires this gem.
The problem is that when I add gem 'backbone_eventbinder_rails', path: '/path/to/repo'
to my app's Gemfile, I can see the file at http://localhost:3000/assets/backbone.eventbinder.js
. When I use gem 'backbone_eventbinder_rails', '1.0.2.2'
, I cannot see the asset. I get a No route matches [GET] "/assets/backbone.eventbinder.js
error.
Any ideas?