bundler 1.7.10 → 1.7.11

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: a55dd2e2969802758ae392f5be881b51dca84355
4
- data.tar.gz: 77b178808d29ac2895509f4bd43aa0eb01844176
3
+ metadata.gz: 304138ac8170f3f0cfded026f152c769c4bb82d3
4
+ data.tar.gz: 642559dbb36236fbfb914c040d50474b79e7740a
5
5
  SHA512:
6
- metadata.gz: 19680456643187a2e4f5ae83e380403bf4ea42f7e71649542febc5e0583a97c70a04f055287304ca4380aa832fa0040c066ac4069c18309e714e3ebcfbdb374f
7
- data.tar.gz: 1c7b78aff2f46af2a16813d388f0bdaae7fb0925eda42db989f51f6a530ea5691218faae53d3bec46d306e43cbd9e37d60677940bfda19a61cc8fe3cf4f18457
6
+ metadata.gz: da5051ee98ba734e1d648979b5f873ba14a76861708bccd39338efd9c46292db9895eec567d585175b739af6056aa3f09dfa3202fd395fa7e1d9588343bf040f
7
+ data.tar.gz: 630ced150f60a3dc4851341215306114195c11aff3b0d1b275a81249d942920f823458c3e0308afd8447ed948ae0a30825b33e51ca45c2dbdcb7a25a0d5d10ed
@@ -1,3 +1,9 @@
1
+ ## 1.7.11 (2015-01-04)
2
+
3
+ Bugfixes:
4
+
5
+ - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` (#3328, @myabc)
6
+
1
7
  ## 1.7.10 (2014-12-29)
2
8
 
3
9
  Bugfixes:
@@ -20,6 +20,7 @@ module Bundler
20
20
  :mri_19 => Gem::Platform::RUBY,
21
21
  :mri_20 => Gem::Platform::RUBY,
22
22
  :mri_21 => Gem::Platform::RUBY,
23
+ :mri_22 => Gem::Platform::RUBY,
23
24
  :rbx => Gem::Platform::RUBY,
24
25
  :jruby => Gem::Platform::JAVA,
25
26
  :jruby_18 => Gem::Platform::JAVA,
@@ -30,9 +31,11 @@ module Bundler
30
31
  :mingw_19 => Gem::Platform::MINGW,
31
32
  :mingw_20 => Gem::Platform::MINGW,
32
33
  :mingw_21 => Gem::Platform::MINGW,
34
+ :mingw_22 => Gem::Platform::MINGW,
33
35
  :x64_mingw => Gem::Platform::X64_MINGW,
34
36
  :x64_mingw_20 => Gem::Platform::X64_MINGW,
35
- :x64_mingw_21 => Gem::Platform::X64_MINGW
37
+ :x64_mingw_21 => Gem::Platform::X64_MINGW,
38
+ :x64_mingw_22 => Gem::Platform::X64_MINGW
36
39
  }.freeze
37
40
 
38
41
  def initialize(name, version, options = {}, &blk)
@@ -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.7.10" unless defined?(::Bundler::VERSION)
5
+ VERSION = "1.7.11" unless defined?(::Bundler::VERSION)
6
6
  end
@@ -193,6 +193,8 @@ There are a number of `Gemfile` platforms:
193
193
  _mri_ `AND` version 2.0
194
194
  * `mri_21`:
195
195
  _mri_ `AND` version 2.1
196
+ * `mri_22`:
197
+ _mri_ `AND` version 2.2
196
198
  * `rbx`:
197
199
  Same as _ruby_, but only Rubinius (not MRI)
198
200
  * `jruby`:
@@ -209,12 +211,16 @@ There are a number of `Gemfile` platforms:
209
211
  _mingw_ `AND` version 2.0
210
212
  * `mingw_21`:
211
213
  _mingw_ `AND` version 2.1
214
+ * `mingw_22`:
215
+ _mingw_ `AND` version 2.2
212
216
  * `x64_mingw`:
213
217
  Windows 64 bit 'mingw32' platform (aka RubyInstaller x64)
214
218
  * `x64_mingw_20`:
215
219
  _x64_mingw_ `AND` version 2.0
216
220
  * `x64_mingw_21`:
217
221
  _x64_mingw_ `AND` version 2.1
222
+ * `x64_mingw_22`:
223
+ _x64_mingw_ `AND` version 2.2
218
224
 
219
225
  As with groups, you can specify one or more platforms:
220
226
 
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.7.10
4
+ version: 1.7.11
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: 2014-12-30 00:00:00.000000000 Z
14
+ date: 2015-01-05 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: mustache