Man page - bundle-platform(1)
Packages contains this manual
- bundle-info(1)
- bundle-doctor(1)
- bundle-add(1)
- bundle-remove(1)
- bundle-install(1)
- bundle-outdated(1)
- bundle-pristine(1)
- bundle-platform(1)
- bundle-update(1)
- bundle-exec(1)
- bundle-viz(1)
- bundle-show(1)
- bundle-config(1)
- bundle-lock(1)
- bundle-open(1)
- bundle-gem(1)
- bundle-init(1)
- bundle-inject(1)
- bundler(1)
- bundle-check(1)
- bundle-list(1)
- gemfile(5)
- bundle-clean(1)
- bundle-binstubs(1)
- bundle(1)
- bundle-cache(1)
apt-get install ruby-bundler
Manual
BUNDLE-PLATFORM
NAMESYNOPSIS
DESCRIPTION
OPTIONS
SEE ALSO
NAME
bundle-platform - Displays platform compatibility information
SYNOPSIS
bundle platform [--ruby]
DESCRIPTION
platform displays information from your Gemfile, Gemfile.lock, and Ruby VM about your platform.
For instance, using this Gemfile(5):
source "https://rubygems.org"
ruby "3.1.2"
gem "rack"
If you run bundle platform on Ruby 3.1.2, it displays the following output:
Your platform is: x86_64-linux
Your app has gems that work on
these platforms:
* arm64-darwin-21
* ruby
* x64-mingw-ucrt
* x86_64-linux
Your Gemfile specifies a Ruby
version requirement:
* ruby 3.1.2
Your current platform satisfies the Ruby version requirement.
platform lists all the platforms in your Gemfile.lock as well as the ruby directive if applicable from your Gemfile(5). It also lets you know if the ruby directive requirement has been met. If ruby directive doesnโt match the running Ruby VM, it tells you what part does not.
OPTIONS
|
--ruby |
It will display the ruby directive information, so you donโt have to parse it from the Gemfile(5). |
SEE ALSO
|
โข |
bundle-lock(1) bundle-lock.1.html |