From 42ef3fcaef5e181d80393084b65af5a28a7b1a01 Mon Sep 17 00:00:00 2001 From: Ngan Pham Date: Mon, 24 Jan 2022 21:01:21 -0800 Subject: [rubygems/rubygems] Use Gem::Platform.local instead of RUBY_PLATFORM In certain places, we want to display the platform name with `Gem::Platform.local` instead of `RUBY_PLATFORM`. Fixes https://github.com/rubygems/rubygems/issues/5264 https://github.com/rubygems/rubygems/commit/bdd1848ae8 --- lib/bundler/cli/platform.rb | 2 +- lib/bundler/env.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/bundler') diff --git a/lib/bundler/cli/platform.rb b/lib/bundler/cli/platform.rb index e97cad49a4..068c765aad 100644 --- a/lib/bundler/cli/platform.rb +++ b/lib/bundler/cli/platform.rb @@ -23,7 +23,7 @@ module Bundler output << "No ruby version specified" end else - output << "Your platform is: #{RUBY_PLATFORM}" + output << "Your platform is: #{Gem::Platform.local}" output << "Your app has gems that work on these platforms:\n#{platforms.join("\n")}" if ruby_version diff --git a/lib/bundler/env.rb b/lib/bundler/env.rb index 00d4ef2196..1763035a8a 100644 --- a/lib/bundler/env.rb +++ b/lib/bundler/env.rb @@ -71,7 +71,7 @@ module Bundler def self.ruby_version str = String.new(RUBY_VERSION) str << "p#{RUBY_PATCHLEVEL}" if defined? RUBY_PATCHLEVEL - str << " (#{RUBY_RELEASE_DATE} revision #{RUBY_REVISION}) [#{RUBY_PLATFORM}]" + str << " (#{RUBY_RELEASE_DATE} revision #{RUBY_REVISION}) [#{Gem::Platform.local}]" end def self.git_version -- cgit v1.2.3