-
-
Save he-and-her/157adc8e5b8571a927d5 to your computer and use it in GitHub Desktop.
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
# lib/capistrano/tasks/assets.rake | |
Rake::Task['deploy:assets:precompile'].clear | |
namespace :deploy do | |
namespace :assets do | |
desc 'Precompile assets locally and then rsync to remote servers' | |
task :precompile do | |
local_manifest_path = %x{ls public/assets/manifest*}.strip | |
%x{bundle exec rake assets:precompile assets:clean} | |
on roles(fetch(:assets_roles)) do |server| | |
%x{rsync -av ./public/assets/ #{server.user}@#{server.hostname}:#{release_path}/public/assets/} | |
%x{rsync -av ./#{local_manifest_path} #{server.user}@#{server.hostname}:#{release_path}/assets_manifest#{File.extname(local_manifest_path)}} | |
end | |
%x{bundle exec rake assets:clobber} | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment