I'm developing a gem and I've installed Jasmine https://github.com/pivotal/jasmine-gem/
All of my required JS files are in my manifest file at app/assets/javascripts/application.js
//= require underscore
//= require backbone
//= require_tree .//vendor
//= require_tree .//custom
//= require_tree .//templates
//= require_tree .//models
//= require_tree .//collections
//= require_tree .//views
And my jasmine.yml file references that:
src_files:
- 'app/assets/javascripts/application.js'
But none of the files specified in it load. Anyone know why? I'm using the latest, Jasmine 1.3.2, which is supposed to support the asset pipeline so that you don't need to use something like jasmine-rails. Any thoughts?