bundler 1.9.3 → 1.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/bundler/index.rb +0 -4
- data/lib/bundler/match_platform.rb +1 -2
- data/lib/bundler/resolver.rb +1 -6
- data/lib/bundler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3fd72f56b8e88b2e79896d64cbc9fc6ae4ede97c
|
|
4
|
+
data.tar.gz: a264fc3a829a856bf74c94ba2386983480878822
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9fd42a2f2eac4fbb2d115b1c77af1a0adbe1dec2826dc664e7973d48742d31a30232d89f59daa6c7e9f17f9bedbb80dd239c52bc51e4d70f5bd3fda8f0bcbdd4
|
|
7
|
+
data.tar.gz: 8661d781682dc0d08fe1663f884cf8017b4c1913217a3052f6daadd6e3181c2b443a8193a3b2cffcd2bddbf7be4e9774e6b94fbddc4b24310067bdc9585f7a19
|
data/CHANGELOG.md
CHANGED
data/lib/bundler/index.rb
CHANGED
data/lib/bundler/resolver.rb
CHANGED
|
@@ -323,12 +323,7 @@ module Bundler
|
|
|
323
323
|
message << "Source does not contain any versions of '#{requirement}'"
|
|
324
324
|
end
|
|
325
325
|
else
|
|
326
|
-
message = "Could not find gem '#{requirement}' "
|
|
327
|
-
if @index.source_types.include?(Bundler::Source::Rubygems)
|
|
328
|
-
message << "in any of the gem sources listed in your Gemfile."
|
|
329
|
-
else
|
|
330
|
-
message << "in the gems available on this machine."
|
|
331
|
-
end
|
|
326
|
+
message = "Could not find gem '#{requirement}' in any of the gem sources listed in your Gemfile or installed on this machine."
|
|
332
327
|
end
|
|
333
328
|
raise GemNotFound, message
|
|
334
329
|
end
|
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.
|
|
5
|
+
VERSION = "1.9.4" 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.9.
|
|
4
|
+
version: 1.9.4
|
|
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-04-
|
|
14
|
+
date: 2015-04-14 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: mustache
|