diff options
| author | mo k <mo@mokhan.ca> | 2012-06-02 06:29:18 -0600 |
|---|---|---|
| committer | mo k <mo@mokhan.ca> | 2012-06-02 06:29:18 -0600 |
| commit | 3ce7caac589d1d30f8668611a1f54074fb12e07b (patch) | |
| tree | 5104f9787655418a673aa55de1c1ce36ba1432eb /config/deploy.rb | |
| parent | d8cc5f8a04abfbc5795d15b2335ca1b01441fe71 (diff) | |
install capistrano-gitflow gem.
Diffstat (limited to 'config/deploy.rb')
| -rw-r--r-- | config/deploy.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/deploy.rb b/config/deploy.rb index bda3ce80..c8323ba3 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -6,6 +6,7 @@ set :rvm_type, :system set :stages, %w(production staging) set :default_stage, "staging" require 'capistrano/ext/multistage' +require 'capistrano/gitflow' set :application, "www.cakeside.com" set :deploy_via, :remote_cache set :user, "cakeside" @@ -18,7 +19,7 @@ set :deploy_to, "/home/cakeside/apps/#{application}" set :scm, :git set :repository, "git@bitbucket.org:mocheen/cakeside.git" set :keep_releases, 3 -set :branch, ENV["branch"] || "master" +set :branch, "master" set :deploy_env, 'production' set :scm_verbose, true |
