Skip to content

Instantly share code, notes, and snippets.

@scottraio
scottraio / deploy.rb
Created March 10, 2012 08:15 — forked from fuse/deploy.rb
Capistrano configuration
require "bundler/capistrano"
# allowing shell interactions
default_run_options[:pty] = true
# multistaging
set :stages, %w(staging production)
set :default_stage, "staging"
require 'capistrano/ext/multistage'