When you add a new controller in Rails 3.1, a new JS file added, fx, controller.js.coffee. I thought this file is included ONLY when this controller is called. But it seems like default instruction //= require_tree includes all the files in the /app/assets/javascripts directory. Has anyone faced similar problem and how did you solve it?

link|improve this question

feedback

2 Answers

up vote 29 down vote accepted

To load only the necessary name_of_the_js_file.js file:

1- remove the //=require_tree . from application.js

2- keep your js file that you want to load when a specific page is loaded in the asset pipeline

3- add a helper in application_helper.rb

  def javascript(*files)
    content_for(:head) { javascript_include_tag(*files) }
  end

4- yield into your layout:

 <%= yield(:head) %>

5- add this in your view file:

<% javascript 'name_of_the_js_file' %>

Then it should be ok

link|improve this answer
It's worth noting that this method works nicely in production. E.g. if you look at the source in production you'll see that the individual controller javascript file gets an appropriate cache-busting name, just like the main application.js file: <script src="/assets/mycontroller-923cef714b82e7dec46117f9aab7fb2c.js" type="text/javascript"></script> – cailinanne Aug 16 '11 at 18:09
Yes because the file itself is in the assets pipeline. We just doesn't want it to be required in application.js. – Nguyen Chien Cong Aug 17 '11 at 8:00
   
This doesn't appear to work in the first official release of Rails 3.1 – Andrew Theis Oct 8 '11 at 2:52
yup..not working for me ....:( – Rushabh Ajay Hathi Oct 9 '11 at 10:00
Can you be more specific? maybe I can help. – Nguyen Chien Cong Oct 9 '11 at 23:48
show 2 more comments
feedback

An elegant solution for this is to require controller_name in your javascript_include_tag

see http://apidock.com/rails/ActionController/Metal/controller_name/class

<%= javascript_include_tag "application", controller_name %>

controller_name.js will be loaded and is in the asset also, so you can require other files from here.

Example, rendering cars#index will give

<%= javascript_include_tag "application", "cars" %>

where cars.js can contain

//= require wheel
//= require tyre

Enjoy !

link|improve this answer
While this is obvious after reading it, the solution did not immediately occur to me. – Andrew Burns Feb 23 at 1:58
2  
If you don't have a file for every controller_name.js you might see some precompile issues and cache misses, especially if you don't explicitly precompile every one of those. – ZMorek Feb 25 at 6:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.