bundler 1.14.1 → 1.14.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/bundler/current_ruby.rb +3 -3
- data/lib/bundler/definition.rb +10 -4
- data/lib/bundler/installer/parallel_installer.rb +4 -0
- data/lib/bundler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ab010bff890baf19768622a2dde3e079fd4ab6b
|
4
|
+
data.tar.gz: ca12ee1b5eb41e1a0e63949c6f2bfdc4c4a56a18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 416e77e9b0faf8e368a9e54baaf06f6cd017cf2cafd13f3c8af5fd08acbdb7a61815b2884559514df638be6bb4a290f8d77673ae4d3bda32e887a591f8f956fe
|
7
|
+
data.tar.gz: 56762f2ff50d22275e5e12ea4a96faf6f23bfb612869d2508b0e3a012c6ff09aee1a64cd15cd2e557b7cebcbc3a9543271532f3c69a19ddf4bed80b78d4ec6b9
|
data/CHANGELOG.md
CHANGED
data/lib/bundler/current_ruby.rb
CHANGED
@@ -58,15 +58,15 @@ module Bundler
|
|
58
58
|
end
|
59
59
|
|
60
60
|
def mswin64?
|
61
|
-
Bundler::WINDOWS && Bundler.local_platform.os == "mswin64" && Bundler.local_platform.cpu == "x64"
|
61
|
+
Bundler::WINDOWS && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mswin64" && Bundler.local_platform.cpu == "x64"
|
62
62
|
end
|
63
63
|
|
64
64
|
def mingw?
|
65
|
-
Bundler::WINDOWS && Bundler.local_platform.os == "mingw32" && Bundler.local_platform.cpu != "x64"
|
65
|
+
Bundler::WINDOWS && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mingw32" && Bundler.local_platform.cpu != "x64"
|
66
66
|
end
|
67
67
|
|
68
68
|
def x64_mingw?
|
69
|
-
Bundler::WINDOWS && Bundler.local_platform.os == "mingw32" && Bundler.local_platform.cpu == "x64"
|
69
|
+
Bundler::WINDOWS && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mingw32" && Bundler.local_platform.cpu == "x64"
|
70
70
|
end
|
71
71
|
|
72
72
|
(KNOWN_MINOR_VERSIONS + KNOWN_MAJOR_VERSIONS).each do |version|
|
data/lib/bundler/definition.rb
CHANGED
@@ -104,7 +104,9 @@ module Bundler
|
|
104
104
|
|
105
105
|
add_current_platform unless Bundler.settings[:frozen]
|
106
106
|
|
107
|
+
converge_gemspec_sources
|
107
108
|
@path_changes = converge_paths
|
109
|
+
@source_changes = converge_sources
|
108
110
|
|
109
111
|
unless @unlock[:lock_shared_dependencies]
|
110
112
|
eager_unlock = expand_dependencies(@unlock[:gems])
|
@@ -113,7 +115,6 @@ module Bundler
|
|
113
115
|
|
114
116
|
@gem_version_promoter = create_gem_version_promoter
|
115
117
|
|
116
|
-
@source_changes = converge_sources
|
117
118
|
@dependency_changes = converge_dependencies
|
118
119
|
@local_changes = converge_locals
|
119
120
|
|
@@ -627,15 +628,20 @@ module Bundler
|
|
627
628
|
gemspec_source || source
|
628
629
|
end
|
629
630
|
|
630
|
-
def
|
631
|
-
changes = false
|
632
|
-
|
631
|
+
def converge_gemspec_sources
|
633
632
|
@locked_sources.map! do |source|
|
634
633
|
converge_path_source_to_gemspec_source(source)
|
635
634
|
end
|
636
635
|
@locked_specs.each do |spec|
|
637
636
|
spec.source &&= converge_path_source_to_gemspec_source(spec.source)
|
638
637
|
end
|
638
|
+
@locked_deps.each do |dep|
|
639
|
+
dep.source &&= converge_path_source_to_gemspec_source(dep.source)
|
640
|
+
end
|
641
|
+
end
|
642
|
+
|
643
|
+
def converge_sources
|
644
|
+
changes = false
|
639
645
|
|
640
646
|
# Get the Rubygems sources from the Gemfile.lock
|
641
647
|
locked_gem_sources = @locked_sources.select {|s| s.is_a?(Source::Rubygems) }
|
data/lib/bundler/version.rb
CHANGED
@@ -7,5 +7,5 @@ module Bundler
|
|
7
7
|
# We're doing this because we might write tests that deal
|
8
8
|
# with other versions of bundler and we are unsure how to
|
9
9
|
# handle this better.
|
10
|
-
VERSION = "1.14.
|
10
|
+
VERSION = "1.14.2" unless defined?(::Bundler::VERSION)
|
11
11
|
end
|
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: 1.14.
|
4
|
+
version: 1.14.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Arko
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-01-
|
12
|
+
date: 2017-01-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: automatiek
|