diff options
author | Benoit Daloze <eregontp@gmail.com> | 2017-12-03 17:08:56 +0100 |
---|---|---|
committer | Benoit Daloze <eregontp@gmail.com> | 2018-09-09 16:38:22 +0200 |
commit | 54c6c4960a002ff5c0f669a3e64adac4764a72d3 (patch) | |
tree | 6dd811595b78a8d0efb185c049dbc7cada981d62 /man | |
parent | 455bfe1c831a1cb4705420a46402386f03558540 (diff) | |
download | bundler-54c6c4960a002ff5c0f669a3e64adac4764a72d3.tar.gz |
Update the Gemfile documentation to reflect the addition of TruffleRuby in Bundler
Diffstat (limited to 'man')
-rw-r--r-- | man/gemfile.5.ronn | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/man/gemfile.5.ronn b/man/gemfile.5.ronn index 4354bcd622..f4772f6d8d 100644 --- a/man/gemfile.5.ronn +++ b/man/gemfile.5.ronn @@ -59,8 +59,8 @@ All parameters are `OPTIONAL` unless otherwise specified. ### VERSION (required) The version of Ruby that your application requires. If your application -requires an alternate Ruby engine, such as JRuby or Rubinius, this should be -the Ruby version that the engine is compatible with. +requires an alternate Ruby engine, such as JRuby, Rubinius or TruffleRuby, this +should be the Ruby version that the engine is compatible with. ruby "1.9.3" @@ -188,22 +188,24 @@ platforms. There are a number of `Gemfile` platforms: * `ruby`: - C Ruby (MRI) or Rubinius, but `NOT` Windows + C Ruby (MRI), Rubinius or TruffleRuby, but `NOT` Windows * `mri`: - Same as _ruby_, but not Rubinius + Same as _ruby_, but only C Ruby (MRI) * `mingw`: Windows 32 bit 'mingw32' platform (aka RubyInstaller) * `x64_mingw`: Windows 64 bit 'mingw32' platform (aka RubyInstaller x64) * `rbx`: - Same as _ruby_, but only Rubinius (not MRI) + Rubinius * `jruby`: JRuby + * `truffleruby`: + TruffleRuby * `mswin`: Windows You can restrict further by platform and version for all platforms *except* for -`rbx`, `jruby`, and `mswin`. +`rbx`, `jruby`, `truffleruby` and `mswin`. To specify a version in addition to a platform, append the version number without the delimiter to the platform. For example, to specify that a gem should only be |