I have my assets folder structure like this

assets
  javascripts
    products
      --product.js
      --productValidate.js
    store
      --store.js

I want the project.js and projectValidate.js to be added in my application.js as a part of asset pipe-lining only when actions in product controller is called and store.js when actions in store controller is called. How can i achieve this in rails 3.1?

link|improve this question

76% accept rate
feedback

4 Answers

As far as I know assets pipilene is something that should be precompiled. So... conceptually it should take all files at once and return just one copiled file, and it is good for caching.

You can store them somewhere out od assets (in puplic, as older Rails do, for example) and include it in depending to current controller and action

link|improve this answer
1  
I just saw railscast 279,in which Ryan mentions that v can specify which folders v wanna add with the application.js file by using require_directory instead of require_tree in the sprockets. I wanna know is there similar ways for adding controller specific js. – Rahul Sep 5 '11 at 20:59
Ryan mentioned WHICH FOLDERS you want to COMPILE it is not in the runtime :) – fl00r Sep 5 '11 at 22:08
feedback

As Rahul allready mentioned, the application.js is precompiled and the same for every action. So it does not depent on a particular controller. The application.js should contain the javascript you need for all (or most) of your actions.

But you may expand your application layout with nested layouts. Lets assume the following structur:

... app/view/layouts/application.html.erb ...

<html>
<head>
  <%= javascript_include_tag 'application' %>
  <%= yield :javascripts %>
  <%= stylesheet_link_tag 'application' %>
  <%= yield :stylesheets %>
</head>
<body>
  <%= yield %>
</body>
</html>

and a:

... app/view/layouts/products.html.erb ...

<% content_for :stylesheets do %>
  <%= stylesheet_include_tag 'products' %>
<% end %>
<% content_for :javascripts do %>
  <%= javascript_include_tag 'products' %>
<% end %>
<%= render :template => 'layouts/application' %>

So you just have to add/require your stylesheeats and javascripts in the products-files. Notice, all code here should be read as pseudo-code, I didn't tested it.

Information taken from the "official" Render-Guide: http://guides.rubyonrails.org/layouts_and_rendering.html#using-nested-layouts

link|improve this answer
This is what I use too. But I put the javascript tags to right before <html> tag. – Victor Sep 6 '11 at 5:31
You should put javascript tags before the closing </body> tag if you want to be a good citizen. – Dmytrii Nagirniak Sep 6 '11 at 5:39
feedback

This is what I am working on now to bridge the gap between Rails 3.1 assets pipeline and Jammit.

I have not provided any documentation as it I consider it under development yet. But this is what it basically should allow you to do:

# config/initializers/pakunok.rb
# Define the dependencies between Rails assets:
require 'pakunok'
Pakunok::Pakunok.current.configure do
  asset('products/product.js').needs('products/productValidate.js')
end

And then, in your layout, you only need to do a single include. All the dependent files will be included automatically:

# app/views/layouts/application.html.erb
<%= include_javascripts %>

Please see the specs to learn what the gem can do. Note: it is still under development and the gem itself will be split into multiple ones later.

For any particular use-cases that you want to be supported, please submit issues and I promise to work hard to implement those when I'll have time :)

link|improve this answer
This looks promising. I'll give it a try and let u know abt it. Thanx.. – Rahul Sep 6 '11 at 6:48
feedback

I like the approach mentioned in the answer to this question:

Rails 3.1 asset pipeline: how to load controller-specific scripts?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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