Rails couldn't find file jquery purr
jquery, ruby-on-rails-3, ruby-on-rails-3.2
Solution
Rails doesn't magically know where to download scripts from.
You have to download and put them in the `app/assets/javascript` directory.
jQuery Purr is found here: http://code.google.com/p/jquery-purr/
Problem
I'm using rails 3.2.3 I included the following files in my application.js ``` //= require jquery.purr //= require best_in_place ``` It now looks like this ``` //= require jquery //= require jquery_ujs //= require jquery.purr //= require best_in_place //= require_tree ``` I'm getting an error saying: couldn't find file 'jquery.purr'