Skip to content

Commit 81c9247

Browse files
0.43.4 (#1455)
* bundle config without needs to be --local * v0.43.4
1 parent ac07691 commit 81c9247

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
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)

app/models/shipit/deploy_spec/bundler_discovery.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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?

lib/shipit/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Shipit
4-
VERSION = '0.43.3'
4+
VERSION = '0.43.4'
55
end

test/models/deploy_spec_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)