bundler 1.10.0 → 1.10.1
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 +8 -0
- data/lib/bundler.rb +1 -1
- data/lib/bundler/rubygems_integration.rb +4 -4
- data/lib/bundler/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9f5b888313b638da49ec89a873a0a45e939f231
|
4
|
+
data.tar.gz: 7314e890b63791d90e43f607bbd67ebcc82dc9dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1fea5817b4f75be5febd306d2bfe8dd00cc7a4f26fccbed099d2e65034837a4f8482fa895fe61cf1f4a20f080db88f96871de73c102bbbff26536c3ed88b58d
|
7
|
+
data.tar.gz: aa2cefdbec40e01a9319fbac7e98ca307f8dc4e7edf9ed701264c23194c0a22cdd7ad12bf9380c2f90094d92e829cc5e4cc6328c1ee9b612bf8577be4f9c0c1c
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## 1.10.1 (2015-05-28)
|
2
|
+
|
3
|
+
Bugfixes:
|
4
|
+
|
5
|
+
- silence ruby warning when running CLI commands (@segiddins)
|
6
|
+
- validate gemspecs in non-packaging mode (#3681, @segiddins)
|
7
|
+
- ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
|
8
|
+
|
1
9
|
## 1.10.0 (2015-05-28)
|
2
10
|
|
3
11
|
(this space intentionally left blank)
|
data/lib/bundler.rb
CHANGED
@@ -48,7 +48,7 @@ module Bundler
|
|
48
48
|
end
|
49
49
|
|
50
50
|
def validate(spec)
|
51
|
-
Bundler.ui.silence { spec.validate }
|
51
|
+
Bundler.ui.silence { spec.validate(false) }
|
52
52
|
end
|
53
53
|
|
54
54
|
def path(obj)
|
@@ -465,7 +465,7 @@ module Bundler
|
|
465
465
|
# Missing summary is downgraded to a warning in later versions,
|
466
466
|
# so we set it to an empty string to prevent an exception here.
|
467
467
|
spec.summary ||= ""
|
468
|
-
|
468
|
+
Bundler.ui.silence { spec.validate }
|
469
469
|
end
|
470
470
|
end
|
471
471
|
|
@@ -614,13 +614,13 @@ module Bundler
|
|
614
614
|
|
615
615
|
Gem::Ext::Builder.class_eval do
|
616
616
|
if !const_defined?(:CHDIR_MONITOR)
|
617
|
-
const_set(:CHDIR_MONITOR,
|
617
|
+
const_set(:CHDIR_MONITOR, EXT_LOCK)
|
618
618
|
end
|
619
619
|
|
620
620
|
if const_defined?(:CHDIR_MUTEX)
|
621
621
|
remove_const(:CHDIR_MUTEX)
|
622
|
-
const_set(:CHDIR_MUTEX, const_get(:CHDIR_MONITOR))
|
623
622
|
end
|
623
|
+
const_set(:CHDIR_MUTEX, const_get(:CHDIR_MONITOR))
|
624
624
|
end
|
625
625
|
end
|
626
626
|
|
data/lib/bundler/version.rb
CHANGED
@@ -2,5 +2,5 @@ module Bundler
|
|
2
2
|
# We're doing this because we might write tests that deal
|
3
3
|
# with other versions of bundler and we are unsure how to
|
4
4
|
# handle this better.
|
5
|
-
VERSION = "1.10.
|
5
|
+
VERSION = "1.10.1" unless defined?(::Bundler::VERSION)
|
6
6
|
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.10.
|
4
|
+
version: 1.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Arko
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2015-05-
|
14
|
+
date: 2015-05-29 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: mustache
|
@@ -315,8 +315,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
315
315
|
version: 1.3.6
|
316
316
|
requirements: []
|
317
317
|
rubyforge_project:
|
318
|
-
rubygems_version: 2.4.
|
318
|
+
rubygems_version: 2.4.6
|
319
319
|
signing_key:
|
320
320
|
specification_version: 4
|
321
321
|
summary: The best way to manage your application's dependencies
|
322
322
|
test_files: []
|
323
|
+
has_rdoc:
|