From 6dbb916c6a869e6300f3e8f3b8bbe2d64fc52c31 Mon Sep 17 00:00:00 2001 From: gregoirenovel Date: Thu, 20 Sep 2018 11:33:33 +0200 Subject: [PATCH] Remove useless comments from deploy.rb --- config/deploy.rb | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/config/deploy.rb b/config/deploy.rb index 21f37c4ff..eafd61382 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,8 +1,7 @@ require 'mina/bundler' require 'mina/rails' require 'mina/git' -require 'mina/rbenv' # for rbenv support. (http://rbenv.org) -# require 'mina/rvm' # for rvm support. (http://rvm.io) +require 'mina/rbenv' # Basic settings: # domain - The hostname to SSH to. @@ -39,9 +38,6 @@ print "Deploy to #{ENV['to']} environment branch #{branch}\n" set :rails_env, 'production' -# For system-wide RVM install. -# set :rvm_path, '/usr/local/rvm/bin/rvm' - # Manually create these paths in shared/ (eg: shared/config/database.yml) in your server. # They will be linked in the 'deploy:link_shared_paths' step. set :shared_paths, [ @@ -58,9 +54,6 @@ set :shared_paths, [ set :rbenv_path, "/usr/local/rbenv/bin/rbenv" -# Optional settings: -# set :user, 'foobar' # Username in the server to SSH to. -# set :port, '30000' # SSH port number. set :forward_agent, true # SSH forward_agent. # This task is the environment that is loaded for most commands, such as @@ -144,9 +137,3 @@ task :deploy => :environment do end end end -# For help in making your deploy script, see the Mina documentation: -# -# - http://nadarei.co/mina -# - http://nadarei.co/mina/tasks -# - http://nadarei.co/mina/settings -# - http://nadarei.co/mina/helpers