Removed output when compiling assets. It seems to break vendored assets when running as an engine.

This commit is contained in:
Mario Visic 2012-04-02 21:46:08 +08:00
parent 4c1e9fa9c4
commit 29e40b39ea

View File

@ -23,14 +23,14 @@ module Locomotive
locomotive/not_logged_in.js locomotive/not_logged_in.css
locomotive/aloha.js)
# very useful to see what happens during the precompilation of the assets
def compile_asset?(path)
puts "Compiling: #{path}"
true
end
app.config.assets.precompile = [ method(:compile_asset?).to_proc ]
# Uncomment the lines below to view the names of assets as they are
# precompiled for the rails asset pipeline
#def compile_asset?(path)
#puts "Compiling: #{path}"
#true
#end
#app.config.assets.precompile = [ method(:compile_asset?).to_proc ]
end
end