bundler 1.11.0.pre.1 → 1.11.0.pre.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 047d83c72808c23bfb02d3d021734e2648247391
4
- data.tar.gz: c7d2e0109ecdc27b9ef3bdb17a865ef1847ce46f
3
+ metadata.gz: d479222ab66f9f0bd34c3a50f7ff780e59770dcb
4
+ data.tar.gz: 7637a1c6cc6f518e40512960d2835b5f1dba651e
5
5
  SHA512:
6
- metadata.gz: a1c58b0e79318f49082d0b81d27a2f932b624cd48bdb003bd2c7cffd3aed332859cdd932bad1f0ce664d0a14c83b9c94fefb447432e20ddaf080000cab807799
7
- data.tar.gz: 269aff92a5244798680969bf42282909249b0c17b023a38bcb6d05b7ed7fb620b7c29edf2898132c17e59c534fd23ed10895f868c10107a02d1aa0bdaefd22b2
6
+ metadata.gz: 52232bb440508ced908102787fbad474b107942c68c9d855c5e34108b94513188832e0850be6432c2b4a7682979a4c926794811ebfd26e43df10f4de54c72483
7
+ data.tar.gz: 1b76d03285f5eb43f1b5bb639710abca01a30bc9d44fb8f90dc8898cc75031a1c5802e93faa53b553217b450df83bfc5b4c4b64be184be33f33cda8eddf4cfcd
@@ -1,3 +1,10 @@
1
+ ## 1.11.0.pre.2 (2015-12-06)
2
+
3
+ Bugfixes:
4
+
5
+ - fail gracefully when trying to execute a non-executable file (#4081, @fotanus)
6
+ - fix a crash when pushing a gem via `rake release` (@segiddins)
7
+
1
8
  ## 1.11.0.pre.1 (2015-11-29)
2
9
 
3
10
  Features:
@@ -33,7 +33,7 @@ module Bundler
33
33
  Bundler.load.setup_environment
34
34
  Bundler.ui = nil
35
35
  Kernel.exec(@cmd, *args)
36
- rescue Errno::EACCES
36
+ rescue Errno::EACCES, Errno::ENOEXEC
37
37
  Bundler.ui = ui
38
38
  Bundler.ui.error "bundler: not executable: #{cmd}"
39
39
  exit 126
@@ -94,7 +94,7 @@ module Bundler
94
94
  if Pathname.new("~/.gem/credentials").expand_path.exist?
95
95
  allowed_push_host = nil
96
96
  gem_command = "gem push '#{path}'"
97
- if gemspec.respond_to?(:metadata)
97
+ if @gemspec.respond_to?(:metadata)
98
98
  allowed_push_host = @gemspec.metadata["allowed_push_host"]
99
99
  gem_command << " --host #{allowed_push_host}" if allowed_push_host
100
100
  end
@@ -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.11.0.pre.1" unless defined?(::Bundler::VERSION)
5
+ VERSION = "1.11.0.pre.2" 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.11.0.pre.1
4
+ version: 1.11.0.pre.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2015-11-30 00:00:00.000000000 Z
14
+ date: 2015-12-06 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: automatiek