FIX: Symbol was missing colon

This commit is contained in:
Robin Ward 2014-10-15 17:54:17 -04:00
parent 65ab88da77
commit a67d1c1765
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ task 'assets:precompile:before' do
def evaluate(context, locals, &block)
::Sprockets.cache_compiled("uglifier", data) do
Uglifier.new(:comments => :none, screw_ie8 => false, :output => {max_line_len: 1024}).compile(data)
Uglifier.new(:comments => :none, :screw_ie8 => false, :output => {max_line_len: 1024}).compile(data)
end
end