Skip to content

Instantly share code, notes, and snippets.

@jseifer
Forked from siebertm/.caprc
Created February 20, 2009 16:06
Show Gist options
  • Select an option

  • Save jseifer/67530 to your computer and use it in GitHub Desktop.

Select an option

Save jseifer/67530 to your computer and use it in GitHub Desktop.

Revisions

  1. @siebertm siebertm created this gist Feb 20, 2009.
    14 changes: 14 additions & 0 deletions .caprc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    # 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