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’
Rails doesn’t magically know where to download scripts from.
You have to download and put them in the
app/assets/javascriptdirectory.jQuery Purr is found here: http://code.google.com/p/jquery-purr/