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
This commit is contained in:
voodoorai2000
2018-09-21 15:31:40 +02:00
parent 335cd2b597
commit bebcc3da48

View File

@@ -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'