Re: [Rails] couldn't find file 'jquery' rails 3.1 stable mountable engine

2011-09-01 Thread Kurtis Rainbolt-Greene
Hey Jorgen, This isn't a solution, but it may be better to simply remove the line from your js file (Looks like #= require jquery) and use the Google CDN version: = javascript_include_tag '//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js', :defer => true, :async => true This will this

[Rails] couldn't find file 'jquery' rails 3.1 stable mountable engine

2011-09-01 Thread Jorgen Nilsson
When I create a new engine in Rails 3.1 stable and then access the dummy app or the engine I get an error say that the app can't find jquery. I've created the engine using rails plugin new coffee --mountable I've also created a basic controller in the engine and the dummy app. If I remove the jav