diff options
-rw-r--r-- | Capfile | 1 | ||||
-rw-r--r-- | Gemfile | 1 | ||||
-rw-r--r-- | Gemfile.lock | 3 |
3 files changed, 5 insertions, 0 deletions
@@ -20,6 +20,7 @@ require 'capistrano/rvm' require 'capistrano/bundler' require 'capistrano/rails/assets' require 'capistrano/rails/migrations' +require 'capistrano/postgresql' # Loads custom tasks from `lib/capistrano/tasks' if you have any defined. Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r } @@ -23,6 +23,7 @@ group :deployment do gem 'capistrano-bundler' gem 'capistrano-rails' gem 'capistrano-rvm' + gem 'capistrano-postgresql', '~>3.0' end # Gems used only for assets and not required diff --git a/Gemfile.lock b/Gemfile.lock index 3ff347f..6023cf6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -46,6 +46,8 @@ GEM capistrano-bundler (1.1.2) capistrano (~> 3.0) sshkit (~> 1.2) + capistrano-postgresql (3.0.0) + capistrano (>= 3.0) capistrano-rails (1.1.1) capistrano (~> 3.1) capistrano-bundler (~> 1.1) @@ -236,6 +238,7 @@ DEPENDENCIES bcrypt-ruby (~> 3.0.0) capistrano (~> 3.2.0) capistrano-bundler + capistrano-postgresql (~> 3.0) capistrano-rails capistrano-rvm coffee-rails (~> 3.2) |