." generated with Ronn/v0.7.3 ." github.com/rtomayko/ronn/tree/0.7.3 . .TH “BUNDLE-PLATFORM” “1” “May 2015” “” “” . .SH “NAME” fBbundle-platformfR - Displays platform compatibility information . .SH “SYNOPSIS” fBbundle platformfR [--ruby] . .SH “DESCRIPTION” fBplatformfR will display information from your Gemfile, Gemfile.lock, and Ruby VM about your platform. . .P For instance, using this Gemfile(5): . .IP “” 4 . .nf
source “rubygems.org”
ruby “1.9.3”
gem “rack” . .fi . .IP “” 0 . .P If you run fBbundle platformfR on Ruby 1.9.3, it will display the following output: . .IP “” 4 . .nf
Your platform is: x86_64-linux
Your app has gems that work on these platforms:
-
ruby
Your Gemfile specifies a Ruby version requirement:
-
ruby 1.9.3
Your current platform satisfies the Ruby version requirement. . .fi . .IP “” 0 . .P fBplatformfR will list all the platforms in your fBGemfile.lockfR as well as the fBrubyfR directive if applicable from your Gemfile(5). It will also let you know if the fBrubyfR directive requirement has been met. If fBrubyfR directive doesn't match the running Ruby VM, it will tell you what part does not. . .SH “OPTIONS” . .TP fB--rubyfR It will just display the ruby directive information, so you don't have to parse it from the Gemfile(5).