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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a4f74b64d8141497615e43538cf4d715a2f08541
4
- data.tar.gz: d959c351fb093d23aa3a00b3a4a5076a16881911
3
+ metadata.gz: e9f5b888313b638da49ec89a873a0a45e939f231
4
+ data.tar.gz: 7314e890b63791d90e43f607bbd67ebcc82dc9dd
5
5
  SHA512:
6
- metadata.gz: 0b3d6200a1876dafa1b7fd5b6f8afe638e489087826fe1703507eafe1000031230fe2b75bcbcc463c6a7c15fa71b6972d216a70292f03839d9595ea840b5570b
7
- data.tar.gz: 59c393cbdf93289c10c15871eead2a1e186711cb5e70ae933c676048294cbfadb6457daf2646bcd79e6469101bfc41e908254605a99b695780fe18124136fa29
6
+ metadata.gz: a1fea5817b4f75be5febd306d2bfe8dd00cc7a4f26fccbed099d2e65034837a4f8482fa895fe61cf1f4a20f080db88f96871de73c102bbbff26536c3ed88b58d
7
+ data.tar.gz: aa2cefdbec40e01a9319fbac7e98ca307f8dc4e7edf9ed701264c23194c0a22cdd7ad12bf9380c2f90094d92e829cc5e4cc6328c1ee9b612bf8577be4f9c0c1c
@@ -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)
@@ -92,7 +92,7 @@ module Bundler
92
92
  end
93
93
 
94
94
  def ui
95
- @ui || (self.ui = UI::Silent.new)
95
+ (defined?(@ui) && @ui) || (self.ui = UI::Silent.new)
96
96
  end
97
97
 
98
98
  def ui=(ui)
@@ -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
- super
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, Monitor.new)
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
 
@@ -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.0" unless defined?(::Bundler::VERSION)
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.0
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-28 00:00:00.000000000 Z
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.5
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: