bundler 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/bundler/build_metadata.rb +1 -1
- data/lib/bundler/cli/install.rb +0 -3
- data/lib/bundler/settings.rb +1 -0
- data/lib/bundler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 88610a0ccc28d334ac316852f804afb36dc3d727790261c4f7d1c35d16e30cbf
|
|
4
|
+
data.tar.gz: 47dd496494e214a5679a93dc32822ba2469a96e46d39f57de1daee0cbe26f23e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d8153145686030bcdde4b49d3ae5124cac3a621310e89427b4e88e8363d6700220415f16c112b4ae516437d02f2656d33a64aa9e61b8b5f324ed5ace3c0c4d7
|
|
7
|
+
data.tar.gz: fad2d2b90df5e52e986507ad6f54063476aae11ef365550118bfd0556d95d3c79b2e218bdf8fcb82c15d2a32bac824b77249cafc647b18a2eea4367e429bd1d6
|
data/CHANGELOG.md
CHANGED
data/lib/bundler/cli/install.rb
CHANGED
|
@@ -165,9 +165,6 @@ module Bundler
|
|
|
165
165
|
|
|
166
166
|
def normalize_settings
|
|
167
167
|
Bundler.settings.set_command_option :path, nil if options[:system]
|
|
168
|
-
Bundler.settings.temporary(:path_relative_to_cwd => false) do
|
|
169
|
-
Bundler.settings.set_command_option :path, "vendor/bundle" if Bundler.settings[:deployment] && Bundler.settings[:path].nil?
|
|
170
|
-
end
|
|
171
168
|
Bundler.settings.set_command_option_if_given :path, options[:path]
|
|
172
169
|
Bundler.settings.temporary(:path_relative_to_cwd => false) do
|
|
173
170
|
Bundler.settings.set_command_option :path, "bundle" if options["standalone"] && Bundler.settings[:path].nil?
|
data/lib/bundler/settings.rb
CHANGED
|
@@ -219,6 +219,7 @@ module Bundler
|
|
|
219
219
|
def path
|
|
220
220
|
configs.each do |_level, settings|
|
|
221
221
|
path = value_for("path", settings)
|
|
222
|
+
path = "vendor/bundle" if value_for("deployment", settings) && path.nil?
|
|
222
223
|
path_system = value_for("path.system", settings)
|
|
223
224
|
disabled_shared_gems = value_for("disable_shared_gems", settings)
|
|
224
225
|
next if path.nil? && path_system.nil? && disabled_shared_gems.nil?
|
data/lib/bundler/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bundler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- André Arko
|
|
@@ -370,7 +370,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
370
370
|
- !ruby/object:Gem::Version
|
|
371
371
|
version: 2.5.2
|
|
372
372
|
requirements: []
|
|
373
|
-
rubygems_version: 3.3.
|
|
373
|
+
rubygems_version: 3.3.3
|
|
374
374
|
signing_key:
|
|
375
375
|
specification_version: 4
|
|
376
376
|
summary: The best way to manage your application's dependencies
|