bundler 1.13.6 → 1.13.7

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: 68a5cc7a514ec7f32e13a90153a67b8135acd1ab
4
- data.tar.gz: c7f4a9f57e024b55fea8fb6baecfe72d28fb026f
3
+ metadata.gz: 917c871afe7de2fbbfcc0e0a8181025aa76a134d
4
+ data.tar.gz: 30a806e961d33a9c8e02a0d2466f9697982138e7
5
5
  SHA512:
6
- metadata.gz: 18ab28c7d1582cd1a33635f8a710ad029186001be75ade1db367a363b7cb47728e83d8bb94dc36e1e623acbfdada33a4db085b9d874cc9b7cced17aa4bd78590
7
- data.tar.gz: d526f3d9e34f12485cc0f8da0510a1001aea0d9211ce01cd232dcb0d5185e413a3853c4ee8dc7bfded1d143c1962da1fc14a98365c874f9a2d677b456424bc5b
6
+ metadata.gz: 8eb69a4cb6714426aa8c18963e94a8bba44820b0e1c83041cb460361287f59ea3e2f4087c4ceacd36500ce0d9b3ed72e718cf4f9ee2da119b148b7fdf0046cc1
7
+ data.tar.gz: 4a781a0b5e880e60f37174880adc36181bce9700a12deb29f938aecc53eff315e8ba6fadc7ce3024f706cdce7fe6ccdf14bb068495fbc806c10681c4a1733bcd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 1.13.7 (2016-12-25)
2
+
3
+ Features:
4
+
5
+ - add support for the `ruby_24` gemfile filter (#5281, @amatsuda)
6
+
1
7
  ## 1.13.6 (2016-10-22)
2
8
 
3
9
  Bugfixes:
@@ -17,6 +17,7 @@ module Bundler
17
17
  :ruby_21 => Gem::Platform::RUBY,
18
18
  :ruby_22 => Gem::Platform::RUBY,
19
19
  :ruby_23 => Gem::Platform::RUBY,
20
+ :ruby_24 => Gem::Platform::RUBY,
20
21
  :mri => Gem::Platform::RUBY,
21
22
  :mri_18 => Gem::Platform::RUBY,
22
23
  :mri_19 => Gem::Platform::RUBY,
@@ -24,6 +25,7 @@ module Bundler
24
25
  :mri_21 => Gem::Platform::RUBY,
25
26
  :mri_22 => Gem::Platform::RUBY,
26
27
  :mri_23 => Gem::Platform::RUBY,
28
+ :mri_24 => Gem::Platform::RUBY,
27
29
  :rbx => Gem::Platform::RUBY,
28
30
  :jruby => Gem::Platform::JAVA,
29
31
  :jruby_18 => Gem::Platform::JAVA,
@@ -35,12 +37,14 @@ module Bundler
35
37
  :mswin_21 => Gem::Platform::MSWIN,
36
38
  :mswin_22 => Gem::Platform::MSWIN,
37
39
  :mswin_23 => Gem::Platform::MSWIN,
40
+ :mswin_24 => Gem::Platform::MSWIN,
38
41
  :mswin64 => Gem::Platform::MSWIN64,
39
42
  :mswin64_19 => Gem::Platform::MSWIN64,
40
43
  :mswin64_20 => Gem::Platform::MSWIN64,
41
44
  :mswin64_21 => Gem::Platform::MSWIN64,
42
45
  :mswin64_22 => Gem::Platform::MSWIN64,
43
46
  :mswin64_23 => Gem::Platform::MSWIN64,
47
+ :mswin64_24 => Gem::Platform::MSWIN64,
44
48
  :mingw => Gem::Platform::MINGW,
45
49
  :mingw_18 => Gem::Platform::MINGW,
46
50
  :mingw_19 => Gem::Platform::MINGW,
@@ -48,11 +52,13 @@ module Bundler
48
52
  :mingw_21 => Gem::Platform::MINGW,
49
53
  :mingw_22 => Gem::Platform::MINGW,
50
54
  :mingw_23 => Gem::Platform::MINGW,
55
+ :mingw_24 => Gem::Platform::MINGW,
51
56
  :x64_mingw => Gem::Platform::X64_MINGW,
52
57
  :x64_mingw_20 => Gem::Platform::X64_MINGW,
53
58
  :x64_mingw_21 => Gem::Platform::X64_MINGW,
54
59
  :x64_mingw_22 => Gem::Platform::X64_MINGW,
55
- :x64_mingw_23 => Gem::Platform::X64_MINGW
60
+ :x64_mingw_23 => Gem::Platform::X64_MINGW,
61
+ :x64_mingw_24 => Gem::Platform::X64_MINGW,
56
62
  }.freeze
57
63
 
58
64
  REVERSE_PLATFORM_MAP = {}.tap do |reverse_platform_map|
@@ -7,5 +7,5 @@ module Bundler
7
7
  # We're doing this because we might write tests that deal
8
8
  # with other versions of bundler and we are unsure how to
9
9
  # handle this better.
10
- VERSION = "1.13.6" unless defined?(::Bundler::VERSION)
10
+ VERSION = "1.13.7" unless defined?(::Bundler::VERSION)
11
11
  end
data/man/gemfile.5.ronn CHANGED
@@ -185,6 +185,8 @@ There are a number of `Gemfile` platforms:
185
185
  _ruby_ `AND` version 2.2
186
186
  * `ruby_23`:
187
187
  _ruby_ `AND` version 2.3
188
+ * `ruby_24`:
189
+ _ruby_ `AND` version 2.4
188
190
  * `mri`:
189
191
  Same as _ruby_, but not Rubinius
190
192
  * `mri_18`:
@@ -199,6 +201,8 @@ There are a number of `Gemfile` platforms:
199
201
  _mri_ `AND` version 2.2
200
202
  * `mri_23`:
201
203
  _mri_ `AND` version 2.3
204
+ * `mri_24`:
205
+ _mri_ `AND` version 2.4
202
206
  * `rbx`:
203
207
  Same as _ruby_, but only Rubinius (not MRI)
204
208
  * `jruby`:
@@ -219,6 +223,8 @@ There are a number of `Gemfile` platforms:
219
223
  _mingw_ `AND` version 2.2
220
224
  * `mingw_23`:
221
225
  _mingw_ `AND` version 2.3
226
+ * `mingw_24`:
227
+ _mingw_ `AND` version 2.4
222
228
  * `x64_mingw`:
223
229
  Windows 64 bit 'mingw32' platform (aka RubyInstaller x64)
224
230
  * `x64_mingw_20`:
@@ -229,6 +235,8 @@ There are a number of `Gemfile` platforms:
229
235
  _x64_mingw_ `AND` version 2.2
230
236
  * `x64_mingw_23`:
231
237
  _x64_mingw_ `AND` version 2.3
238
+ * `x64_mingw_24`:
239
+ _x64_mingw_ `AND` version 2.4
232
240
 
233
241
  As with groups, you can specify one or more platforms:
234
242
 
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.13.6
4
+ version: 1.13.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2016-10-22 00:00:00.000000000 Z
12
+ date: 2016-12-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: automatiek
@@ -382,7 +382,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
382
382
  version: 1.3.6
383
383
  requirements: []
384
384
  rubyforge_project:
385
- rubygems_version: 2.6.7
385
+ rubygems_version: 2.6.8
386
386
  signing_key:
387
387
  specification_version: 4
388
388
  summary: The best way to manage your application's dependencies