Created
March 3, 2013 21:48
-
-
Save subelsky/5078466 to your computer and use it in GitHub Desktop.
Quick rake task to check if assets need to pre-compiled before deployment (since I don't like precompiling during deployment)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :assets do | |
task :check do | |
root_dir = File.join(File.dirname(__FILE__),"..","..") | |
assets_last_modified_at = Dir["#{root_dir}/app/assets/**/**"].map { |p| File.mtime(p) }.sort.last | |
assets_last_compiled_at = Dir["#{root_dir}/public/assets/**/**"].map { |p| File.mtime(p) }.sort.last | |
if assets_last_modified_at > assets_last_compiled_at | |
fail "Assets need to precompiled; last asset modified at #{assets_last_modified_at}" | |
end | |
end | |
end |
thanks guys! Nick looks like this is a solved problem, thanks!
If you're in Rails 3 you can use this: https://github.com/ndbroadbent/turbo-sprockets-rails3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Be aware the task doesn't check if assets inside gems have been updated, which may be a problem for some.