File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ require 'capistrano/deploy'
14
14
# https://github.com/capistrano/bundler
15
15
# https://github.com/capistrano/rails
16
16
#
17
- # require 'capistrano/rvm'
17
+ require 'capistrano/rvm'
18
18
# require 'capistrano/rbenv'
19
19
# require 'capistrano/chruby'
20
- # require 'capistrano/bundler'
20
+ require 'capistrano/bundler'
21
21
require 'capistrano/rails/assets'
22
22
require 'capistrano/rails/migrations'
23
23
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ group :development do
35
35
gem 'thin'
36
36
# deploy using capistrano
37
37
gem 'capistrano' , '~> 3.9.1' , require : false
38
+ gem 'capistrano-rvm' , require : false
38
39
gem 'capistrano-rails' , '~> 1.3.0' , require : false
39
40
gem 'capistrano-bundler' , '~> 1.3.0' , require : false
40
41
# gem security scanner
Original file line number Diff line number Diff line change 70
70
capistrano-rails (1.3.0 )
71
71
capistrano (~> 3.1 )
72
72
capistrano-bundler (~> 1.1 )
73
+ capistrano-rvm (0.1.2 )
74
+ capistrano (~> 3.0 )
75
+ sshkit (~> 1.2 )
73
76
chartkick (2.2.2 )
74
77
climate_control (0.1.0 )
75
78
cocaine (0.5.8 )
@@ -253,6 +256,7 @@ DEPENDENCIES
253
256
capistrano (~> 3.9.1 )
254
257
capistrano-bundler (~> 1.3.0 )
255
258
capistrano-rails (~> 1.3.0 )
259
+ capistrano-rvm
256
260
chartkick
257
261
coffee-rails (~> 3.2.1 )
258
262
devise
@@ -279,5 +283,8 @@ DEPENDENCIES
279
283
twitter-bootstrap-rails (~> 2.2.7 )
280
284
uglifier (>= 1.0.3 )
281
285
286
+ RUBY VERSION
287
+ ruby 2.3.4p301
288
+
282
289
BUNDLED WITH
283
290
1.16.0.pre.3
Original file line number Diff line number Diff line change 11
11
12
12
role :web , "10.3.3.110"
13
13
role :app , "10.3.3.110"
14
- role :db , "10.3.3.110" , :primary => true
14
+ role :db , "10.3.3.110" , :primary => true
15
15
16
16
set :rvm_type , :system
17
- set :rvm_bin_path , "/usr/local/rvm/bin"
18
- set :rvm_path , "/usr/local/rvm/"
17
+ # set :rvm_bin_path, "/usr/local/rvm/bin"
18
+ # set :rvm_path, "/usr/local/rvm/"
19
19
20
20
# Extended Server Syntax
21
21
# ======================
You can’t perform that action at this time.
0 commit comments