siebertm (owner)

Forks

Revisions

gist: 67435 Download_button fork
public
Public Clone URL: git://gist.github.com/67435.git
.caprc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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