Skip to content

Instantly share code, notes, and snippets.

@linyows
Created January 28, 2015 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linyows/69de42a5ec9f033afa1c to your computer and use it in GitHub Desktop.
Save linyows/69de42a5ec9f033afa1c to your computer and use it in GitHub Desktop.
Capistrano3 各リビジョンを俯瞰するやつ
namespace :deploy do
task :revisions do
on roles(:all), in: :parallel do |host|
puts "#{host}: #{capture(:tail, '-n 1', revision_log)}"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment