File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
app/models/shipit/deploy_spec Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- shipit-engine (0.43.3 )
4+ shipit-engine (0.43.4 )
55 active_model_serializers (~> 0.9.3 )
66 ansi_stream (~> 0.0.6 )
77 autoprefixer-rails (~> 6.4.1 )
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def bundle_config_frozen
5555 end
5656
5757 def bundle_without_groups
58- "bundle config set without '#{ bundler_without . join ( ':' ) } '"
58+ "bundle config set --local without '#{ bundler_without . join ( ':' ) } '"
5959 end
6060
6161 def frozen_mode?
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module Shipit
4- VERSION = '0.43.3 '
4+ VERSION = '0.43.4 '
55end
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ class DeploySpecTest < ActiveSupport::TestCase
7171 --retry 2
7272 ) . gsub ( /\s +/ , ' ' ) . strip
7373 config_command = "bundle config set --local path #{ @spec . bundle_path } "
74- without_command = "bundle config set without 'default:production:development:test:staging:benchmark:debug'"
74+ without_command = "bundle config set --local without 'default:production:development:test:staging:benchmark:debug'"
7575
7676 assert_equal command , @spec . bundle_install . last
7777 assert @spec . bundle_install . include? ( config_command )
@@ -87,7 +87,7 @@ class DeploySpecTest < ActiveSupport::TestCase
8787 --retry 2
8888 ) . gsub ( /\s +/ , ' ' ) . strip
8989 assert_equal command , @spec . bundle_install . last
90- without_command = "bundle config set without 'some:custom:groups'"
90+ without_command = "bundle config set --local without 'some:custom:groups'"
9191 assert @spec . bundle_install . include? ( without_command )
9292 end
9393
You can’t perform that action at this time.
0 commit comments