Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Asset Pipeline not finding JS file

My Rails.application.config.assets.paths contains the directory for an asset I'd like (autocomplete):

- /Users/kiranb/application/app/assets/images
- /Users/kiranb/application/app/assets/javascripts
- /Users/kiranb/application/app/assets/stylesheets
- /Users/kiranb/application/vendor/assets/javascripts
- /Users/kiranb/application/vendor/assets/stylesheets
- /Users/kiranb/.rvm/gems/ruby-1.9.2-p290@application/gems/rails3-jquery-autocomplete-1.0.5/lib/assets/javascripts
- /Users/kiranb/.rvm/gems/ruby-1.9.2-p290@application/gems/jquery-rails-1.0.19/vendor/assets/javascripts

The lib/assets/javascripts for the autocomplete gem contains:

autocomplete-rails-uncompressed.js  autocomplete-rails.js

And my application.js includes:

//= require jquery
//= require jquery_ujs
//= require jquery-ui
//= require autocomplete-rails
//= require_tree .

However, I keep getting the error:

couldn't find file 'autocomplete-rails'  
   (in /Users/kiranb/application/app/assets/javascripts/application.js:11)

It has no trouble finding any other assets, though. What am I doing wrong?

like image 518
kiranb Avatar asked Jan 13 '12 22:01

kiranb


1 Answers

As stated by the original poster of the question:


The problem was fixed by restarting the server.

like image 171
Hugo Dozois Avatar answered Oct 03 '22 01:10

Hugo Dozois