bundler 1.15.0.pre.3 → 1.15.0.pre.4
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/rubygems_integration.rb +4 -0
- data/lib/bundler/stub_specification.rb +1 -0
- data/lib/bundler/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7709ef44818c17fec7a7ba49f09aec97705df4f7
|
4
|
+
data.tar.gz: 2590a16c1b973d695efacbd9bfc182531f750cc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7855550faba2b93132bbc95ba3c8967ae081a358ec0b9b966cffaadc4e5ca04cb2e8838fc3466925394f4ed0e252540be90a9f2ad38825027f74f24d973acc33
|
7
|
+
data.tar.gz: ae3458d05c424e0d58be555c5282ca04d4cf8b4731c424b8148555a68b77a6c34202a5e2b029bf1ae17cfd1de787cd632c8ef5a84f32d964a2ba78d4082a9b93
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## 1.15.0.pre.4 (2017-05-10)
|
2
|
+
|
3
|
+
Bugfixes:
|
4
|
+
|
5
|
+
- avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
|
6
|
+
- ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it (#5592, @jules2689)
|
7
|
+
|
1
8
|
## 1.15.0.pre.3 (2017-04-30)
|
2
9
|
|
3
10
|
Bugfixes:
|
@@ -4,6 +4,7 @@ require "bundler/remote_specification"
|
|
4
4
|
module Bundler
|
5
5
|
class StubSpecification < RemoteSpecification
|
6
6
|
def self.from_stub(stub)
|
7
|
+
return stub if stub.is_a?(Bundler::StubSpecification)
|
7
8
|
spec = new(stub.name, stub.version, stub.platform, nil)
|
8
9
|
spec.stub = stub
|
9
10
|
spec
|
data/lib/bundler/version.rb
CHANGED
@@ -7,7 +7,7 @@ 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.15.0.pre.
|
10
|
+
VERSION = "1.15.0.pre.4" unless defined?(::Bundler::VERSION)
|
11
11
|
|
12
12
|
def self.overwrite_loaded_gem_version
|
13
13
|
begin
|
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.15.0.pre.
|
4
|
+
version: 1.15.0.pre.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Arko
|
@@ -17,7 +17,7 @@ authors:
|
|
17
17
|
autorequire:
|
18
18
|
bindir: exe
|
19
19
|
cert_chain: []
|
20
|
-
date: 2017-05-
|
20
|
+
date: 2017-05-10 00:00:00.000000000 Z
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: automatiek
|
@@ -454,3 +454,4 @@ signing_key:
|
|
454
454
|
specification_version: 4
|
455
455
|
summary: The best way to manage your application's dependencies
|
456
456
|
test_files: []
|
457
|
+
has_rdoc:
|