From bebcc3da489ea47aafb82fee389e6dca8a43c8ef Mon Sep 17 00:00:00 2001 From: voodoorai2000 Date: Fri, 21 Sep 2018 15:31:40 +0200 Subject: [PATCH] Skip ruby and bundler installations Ruby and bundler should already be installed in the system Before we can bring back these commands we need to review them, right now they are raising an interesting exception --- config/deploy.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/deploy.rb b/config/deploy.rb index f5d570665..c89869333 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -41,9 +41,9 @@ set(:config_files, %w( set :whenever_roles, -> { :app } namespace :deploy do - before :starting, 'rvm1:install:rvm' # install/update RVM - before :starting, 'rvm1:install:ruby' # install Ruby and create gemset - before :starting, 'install_bundler_gem' # install bundler gem + #before :starting, 'rvm1:install:rvm' # install/update RVM + #before :starting, 'rvm1:install:ruby' # install Ruby and create gemset + #before :starting, 'install_bundler_gem' # install bundler gem after :publishing, 'deploy:restart' after :published, 'delayed_job:restart'