2013-12-18 20:33:17 -05:00
|
|
|
task 'assets:precompile:before' do
|
2013-11-03 17:58:34 -05:00
|
|
|
|
2013-12-18 20:33:17 -05:00
|
|
|
unless %w{profile production}.include? Rails.env
|
|
|
|
raise "rake assets:precompile should only be run in RAILS_ENV=production, you are risking unminified assets"
|
2013-11-03 17:58:34 -05:00
|
|
|
end
|
2013-12-18 20:33:17 -05:00
|
|
|
|
2014-02-06 19:36:44 -05:00
|
|
|
# Ensure we ALWAYS do a clean build
|
|
|
|
# We use many .erbs that get out of date quickly, especially with plugins
|
2014-02-07 05:43:05 -05:00
|
|
|
puts "Purging temp files"
|
2014-02-06 19:36:44 -05:00
|
|
|
`rm -fr #{Rails.root}/tmp/cache`
|
|
|
|
|
2013-12-18 20:33:17 -05:00
|
|
|
# in the past we applied a patch that removed asset postfixes, but it is terrible practice
|
|
|
|
# leaving very complicated build issues
|
|
|
|
# https://github.com/rails/sprockets-rails/issues/49
|
2014-02-06 00:55:53 -05:00
|
|
|
|
|
|
|
# let's make precompile faster using redis magic
|
|
|
|
require 'sprockets'
|
|
|
|
require 'digest/sha1'
|
|
|
|
|
|
|
|
module ::Sprockets
|
2014-03-04 00:54:58 -05:00
|
|
|
|
|
|
|
def self.cache_compiled(type, data)
|
|
|
|
digest = Digest::SHA1.hexdigest(data)
|
|
|
|
key = "SPROCKETS_#{type}_#{digest}"
|
|
|
|
if compiled = $redis.get(key)
|
|
|
|
$redis.expire(key, 1.week)
|
|
|
|
else
|
|
|
|
compiled = yield
|
|
|
|
$redis.setex(key, 1.week, compiled)
|
|
|
|
end
|
|
|
|
compiled
|
|
|
|
end
|
|
|
|
|
|
|
|
class UglifierCompressor
|
2014-02-06 00:55:53 -05:00
|
|
|
|
2014-03-04 00:54:58 -05:00
|
|
|
def evaluate(context, locals, &block)
|
|
|
|
::Sprockets.cache_compiled("uglifier", data) do
|
2014-03-04 01:16:53 -05:00
|
|
|
Uglifier.new(:comments => :none).compile(data)
|
2014-02-06 00:55:53 -05:00
|
|
|
end
|
|
|
|
end
|
2014-03-04 00:54:58 -05:00
|
|
|
|
2014-02-06 00:55:53 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-03 17:58:34 -05:00
|
|
|
end
|
2013-12-18 20:33:17 -05:00
|
|
|
|
|
|
|
task 'assets:precompile' => 'assets:precompile:before'
|