> <%= javascript_include_tag :defaults %> > <%= javascript_include_tag :all, :cache => true %>
These two lines are both calling the same set of scripts. Just use one (and the latter takes advantage of caching), or call them individually with caching, as in: <%= javascript_include_tag 'script_1', 'script_2', 'script_3', :cache => 'cache/all' %> -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

