Skip to content
Merged

0.43.4 #1455

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
shipit-engine (0.43.3)
shipit-engine (0.43.4)
active_model_serializers (~> 0.9.3)
ansi_stream (~> 0.0.6)
autoprefixer-rails (~> 6.4.1)
Expand Down
2 changes: 1 addition & 1 deletion app/models/shipit/deploy_spec/bundler_discovery.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def bundle_config_frozen
end

def bundle_without_groups
"bundle config set without '#{bundler_without.join(':')}'"
"bundle config set --local without '#{bundler_without.join(':')}'"
end

def frozen_mode?
Expand Down
2 changes: 1 addition & 1 deletion lib/shipit/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Shipit
VERSION = '0.43.3'
VERSION = '0.43.4'
end
4 changes: 2 additions & 2 deletions test/models/deploy_spec_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class DeploySpecTest < ActiveSupport::TestCase
--retry 2
).gsub(/\s+/, ' ').strip
config_command = "bundle config set --local path #{@spec.bundle_path}"
without_command = "bundle config set without 'default:production:development:test:staging:benchmark:debug'"
without_command = "bundle config set --local without 'default:production:development:test:staging:benchmark:debug'"

assert_equal command, @spec.bundle_install.last
assert @spec.bundle_install.include?(config_command)
Expand All @@ -87,7 +87,7 @@ class DeploySpecTest < ActiveSupport::TestCase
--retry 2
).gsub(/\s+/, ' ').strip
assert_equal command, @spec.bundle_install.last
without_command = "bundle config set without 'some:custom:groups'"
without_command = "bundle config set --local without 'some:custom:groups'"
assert @spec.bundle_install.include?(without_command)
end

Expand Down