bundler 1.9.3 → 1.9.4

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: d7681f71e2a98a61c620cce98492c9f6a4b164e6
4
- data.tar.gz: b803256dd20226d4e93ae449ce381215219b4926
3
+ metadata.gz: 3fd72f56b8e88b2e79896d64cbc9fc6ae4ede97c
4
+ data.tar.gz: a264fc3a829a856bf74c94ba2386983480878822
5
5
  SHA512:
6
- metadata.gz: a309d9e32520643cb7a19e79763332f6cede63cdade247459276ec4d36a0dfbf113a0d262b3424ad38e1a660a51aac8340d3fbc8292cb7f722812ff5489e223b
7
- data.tar.gz: 7e8fb55ec89093f0e8e7aaa03ecf8081c693f0452990d2db317858ea2bc27c1e636e0d8820d3e2b52c68755f125f36e47b9709fdc9fdb67090ba4cfcbf177e94
6
+ metadata.gz: 9fd42a2f2eac4fbb2d115b1c77af1a0adbe1dec2826dc664e7973d48742d31a30232d89f59daa6c7e9f17f9bedbb80dd239c52bc51e4d70f5bd3fda8f0bcbdd4
7
+ data.tar.gz: 8661d781682dc0d08fe1663f884cf8017b4c1913217a3052f6daadd6e3181c2b443a8193a3b2cffcd2bddbf7be4e9774e6b94fbddc4b24310067bdc9585f7a19
@@ -1,3 +1,10 @@
1
+ ## 1.9.4 (2015-04-13)
2
+
3
+ Bugfixes:
4
+
5
+ - fix regression in installing x86 and universal gems (#3565, @jdmundrawala)
6
+ - improve error when gems are missing (#3564, @sealocal)
7
+
1
8
  ## 1.9.3 (2015-04-12)
2
9
 
3
10
  Bugfixes:
@@ -81,10 +81,6 @@ module Bundler
81
81
  end
82
82
  end
83
83
 
84
- def source_types
85
- sources.map{|s| s.class }.uniq
86
- end
87
-
88
84
  alias [] search
89
85
 
90
86
  def <<(spec)
@@ -7,8 +7,7 @@ module Bundler
7
7
  def match_platform(p)
8
8
  Gem::Platform::RUBY == platform or
9
9
  platform.nil? or p == platform or
10
- generic(Gem::Platform.new(platform)) == p or
11
- platform === p
10
+ generic(Gem::Platform.new(platform)) === p
12
11
  end
13
12
  end
14
13
  end
@@ -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
@@ -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.3" unless defined?(::Bundler::VERSION)
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.3
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-13 00:00:00.000000000 Z
14
+ date: 2015-04-14 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: mustache