This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |