Skip to content

Instantly share code, notes, and snippets.

@jseifer
jseifer / gist:38813
Created December 22, 2008 00:35 — forked from peterc/gist:33337
# SUPER DARING APP TEMPLATE 1.0
# Originally By Peter Cooper
# Modified by Jason Seifer
# Link to local copy of edge rails
inside('vendor') { run 'ln -s ~/Source/rails rails' }
# Delete unnecessary files
run "rm README"
run "rm public/index.html"
@jseifer
jseifer / .caprc
Created February 20, 2009 16:06 — forked from siebertm/.caprc
# 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