From ee4af8df9bf588b2215013c2001e6ff440576ad6 Mon Sep 17 00:00:00 2001 From: Pau Perez Date: Fri, 20 Dec 2019 14:27:58 +0100 Subject: [PATCH] Require capistrano/rbenv always The new production server does work the same way as staging and this hack is not needed anymore. --- Capfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Capfile b/Capfile index 961d5b90b..0f81c1684 100644 --- a/Capfile +++ b/Capfile @@ -16,11 +16,7 @@ require 'capistrano/deploy' # https://github.com/capistrano/passenger # require 'capistrano/rails' - -stage = ARGV.first -if stage != 'production' # Sorry, production is not ready yet - require 'capistrano/rbenv' -end +require 'capistrano/rbenv' # Load custom tasks from `lib/capistrano/tasks` if you have any defined Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }