diff options
author | Homu <homu@barosl.com> | 2016-11-15 09:39:53 +0900 |
---|---|---|
committer | Homu <homu@barosl.com> | 2016-11-15 09:39:53 +0900 |
commit | aa9414e78f527ee2066d21783abb7d52a55f68a9 (patch) | |
tree | b7f0cf54725ea62c1811bf10f791bf6c4dc51de7 /man | |
parent | 66f486474dad6a8c4a159b5d89e433bf55b287b2 (diff) | |
parent | 107fc58330ae32e369e96c3f5d357ce8746e3c6c (diff) | |
download | bundler-aa9414e78f527ee2066d21783abb7d52a55f68a9.tar.gz |
Auto merge of #5170 - amatsuda:mri_24, r=segiddins
Support :mri_24 platform
Current ruby trunk is versioned as "2.4.0".
% ruby -ve 'p RUBY_VERSION'
ruby 2.4.0dev (2016-11-15 trunk 56792) [x86_64-darwin15]
"2.4.0"
We'd like to run tests on some gems against ruby-trunk or 2.4 pre-releases, so here's a support for MRI 2.4.
(This is Ruby 2.4 version of #3865)
Diffstat (limited to 'man')
-rw-r--r-- | man/gemfile.5.ronn | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/man/gemfile.5.ronn b/man/gemfile.5.ronn index da2157e971..e06e14fafc 100644 --- a/man/gemfile.5.ronn +++ b/man/gemfile.5.ronn @@ -185,6 +185,8 @@ There are a number of `Gemfile` platforms: _ruby_ `AND` version 2.2 * `ruby_23`: _ruby_ `AND` version 2.3 + * `ruby_24`: + _ruby_ `AND` version 2.4 * `mri`: Same as _ruby_, but not Rubinius * `mri_18`: @@ -199,6 +201,8 @@ There are a number of `Gemfile` platforms: _mri_ `AND` version 2.2 * `mri_23`: _mri_ `AND` version 2.3 + * `mri_24`: + _mri_ `AND` version 2.4 * `rbx`: Same as _ruby_, but only Rubinius (not MRI) * `jruby`: @@ -219,6 +223,8 @@ There are a number of `Gemfile` platforms: _mingw_ `AND` version 2.2 * `mingw_23`: _mingw_ `AND` version 2.3 + * `mingw_24`: + _mingw_ `AND` version 2.4 * `x64_mingw`: Windows 64 bit 'mingw32' platform (aka RubyInstaller x64) * `x64_mingw_20`: @@ -229,6 +235,8 @@ There are a number of `Gemfile` platforms: _x64_mingw_ `AND` version 2.2 * `x64_mingw_23`: _x64_mingw_ `AND` version 2.3 + * `x65_mingw_23`: + _x64_mingw_ `AND` version 2.4 As with groups, you can specify one or more platforms: |