bundler 1.9.0.pre.1 → 1.9.0.rc
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.rb +2 -1
- data/lib/bundler/cli/gem.rb +1 -1
- data/lib/bundler/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbe47d968d8714b1ddb82c8b27b9ef4375d30111
|
4
|
+
data.tar.gz: e9b86954efd4fa6ef5eadd17d601361dd12a7d61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37e14e1d07f65ed2a2347b0fb17814baacd4a33bcf60ca43e4c0015567a719882aa9f4d11c556f1302aeb8cf1523df1e60bfea2253ba96d57483405190471b16
|
7
|
+
data.tar.gz: 50a228b9a0a02c31c1533955ddb65937e9d8949fe7006cc993957203a6c78815888ee3d3d04f5fe2cacdd689d16c1a5846a165353f0fd1ebfb7e5498fc07187d
|
data/CHANGELOG.md
CHANGED
data/lib/bundler.rb
CHANGED
@@ -316,7 +316,8 @@ module Bundler
|
|
316
316
|
executable
|
317
317
|
elsif ENV['PATH']
|
318
318
|
path = ENV['PATH'].split(File::PATH_SEPARATOR).find do |p|
|
319
|
-
File.
|
319
|
+
abs_path = File.join(p, executable)
|
320
|
+
File.file?(abs_path) && File.executable?(abs_path)
|
320
321
|
end
|
321
322
|
path && File.expand_path(executable, path)
|
322
323
|
end
|
data/lib/bundler/cli/gem.rb
CHANGED
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.9.0.
|
5
|
+
VERSION = "1.9.0.rc" unless defined?(::Bundler::VERSION)
|
6
6
|
end
|