Skip to content

Instantly share code, notes, and snippets.

@siebertm
Created February 20, 2009 12:48
Show Gist options
  • Save siebertm/67435 to your computer and use it in GitHub Desktop.
Save siebertm/67435 to your computer and use it in GitHub Desktop.
# ever wanted capistrano talk to you?
# this is used with ext/multistage and only works on a mac
require 'capistrano_colors'
before :deploy, :say_begin_deploy
after :deploy, :say_end_deploy
task :say_begin_deploy do
`say deploying #{ARGV[0]}`
end
task :say_end_deploy do
`say successfully deployed #{ARGV[0]}`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment