im not quite sure what the actual behavior is, so my first question is:
are assets (e.g. javascripts) from a gem (in my case spree) always compiled? i don't use spree's javascripts, and therefore don't want them to be compiled. i don't require them in my application.js or any other javascript file, but

rake assets:precompile

compiles them nonetheless. i just don't want them lying around in my public/assets folder.

so i guess my question is, is there a way to disable compiling javascripts from a gem?

cheers marian

link|improve this question

64% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I guess there is a smart way to achieve your goal using sprockets. Maybe some require_directory instead of require_tree.

But the most direct thing would be to remove theses assets from your assets paths. To achieve this, add this at the very end of your application.rb file (doesn't work in an initializer):

class Engine < Rails::Engine
   initializer "remove assets directories from pipeline" do |app|
     app.config.assets.paths = app.config.assets.paths - app.config.assets.paths.grep(/nice_regexp_here_to_match_the_dir_where_the_unwanted_files_live/)
   end
end

Just tried a hack: put the code in an initializer but require it at the end of your application.rb:

require "config/initializers/your_file'

I prefer very specific code to be visible this way.

link|improve this answer
thnx a lot, i'll try that! – Marian Theisen Aug 24 '11 at 6:31
feedback

Your Answer

 
or
required, but never shown

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