Commit 6bb5483d18b0a80a637109abef3fd4f969328fa5

Authored by Fernando Brito
1 parent 92b443fb
Exists in master and in 2 other branches v2, wikilibras

Add capistrano to Gemfile

Showing 2 changed files with 30 additions and 0 deletions   Show diff stats
Gemfile
... ... @@ -36,6 +36,11 @@ gem 'foreman'
36 36 gem 'carrierwave'
37 37  
38 38 group :development do
  39 + gem 'capistrano', '~> 3.0', require: false
  40 + gem 'capistrano-rails', '~> 1.1', require: false
  41 + gem 'capistrano-bundler', '~> 1.1', require: false
  42 + gem 'capistrano-rvm', '~> 0.1', require: false
  43 +
39 44 gem 'better_errors'
40 45 gem 'binding_of_caller', :platforms=>[:mri_21]
41 46 gem 'guard-bundler'
... ...
Gemfile.lock
... ... @@ -63,6 +63,19 @@ GEM
63 63 thor
64 64 builder (3.2.2)
65 65 cancan (1.6.10)
  66 + capistrano (3.2.1)
  67 + i18n
  68 + rake (>= 10.0.0)
  69 + sshkit (~> 1.3)
  70 + capistrano-bundler (1.1.2)
  71 + capistrano (~> 3.0)
  72 + sshkit (~> 1.2)
  73 + capistrano-rails (1.1.1)
  74 + capistrano (~> 3.1)
  75 + capistrano-bundler (~> 1.1)
  76 + capistrano-rvm (0.1.1)
  77 + capistrano (~> 3.0)
  78 + sshkit (~> 1.2)
66 79 capybara (2.2.1)
67 80 mime-types (>= 1.16)
68 81 nokogiri (>= 1.3.3)
... ... @@ -89,6 +102,7 @@ GEM
89 102 coffee-script-source
90 103 execjs
91 104 coffee-script-source (1.7.0)
  105 + colorize (0.7.3)
92 106 columnize (0.8.9)
93 107 commonjs (0.2.7)
94 108 daemons (1.1.9)
... ... @@ -226,6 +240,9 @@ GEM
226 240 multi_xml (0.5.5)
227 241 multipart-post (2.0.0)
228 242 mysql2 (0.3.15)
  243 + net-scp (1.2.1)
  244 + net-ssh (>= 2.6.5)
  245 + net-ssh (2.9.1)
229 246 nio4r (1.0.0)
230 247 nokogiri (1.6.2)
231 248 mini_portile (~> 0.5.2)
... ... @@ -347,6 +364,10 @@ GEM
347 364 activesupport (>= 3.0)
348 365 sprockets (~> 2.8)
349 366 sqlite3 (1.3.9)
  367 + sshkit (1.5.1)
  368 + colorize
  369 + net-scp (>= 1.1.2)
  370 + net-ssh (>= 2.8.0)
350 371 therubyracer (0.12.1)
351 372 libv8 (~> 3.16.14.0)
352 373 ref
... ... @@ -397,6 +418,10 @@ DEPENDENCIES
397 418 better_errors
398 419 binding_of_caller
399 420 cancan
  421 + capistrano (~> 3.0)
  422 + capistrano-bundler (~> 1.1)
  423 + capistrano-rails (~> 1.1)
  424 + capistrano-rvm (~> 0.1)
400 425 capybara
401 426 carrierwave
402 427 coffee-rails (~> 4.0.0)
... ...