Skip to content

Instantly share code, notes, and snippets.

@D3xx73r
Forked from uhlenbrock/deploy.rb
Created August 12, 2013 19:37
Show Gist options
  • Save D3xx73r/6214332 to your computer and use it in GitHub Desktop.
Save D3xx73r/6214332 to your computer and use it in GitHub Desktop.
load 'deploy/assets'
namespace :deploy do
namespace :assets do
desc 'Run the precompile task locally and rsync with shared'
task :precompile, :roles => :web, :except => { :no_release => true } do
%x{bundle exec rake assets:precompile}
%x{rsync --recursive --times --rsh=ssh --compress --human-readable --progress public/assets #{user}@#{host}:#{shared_path}}
%x{bundle exec rake assets:clean}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment