Sha256: 13eec9f55875e4cdade36166c55386120a726186e3ad1ac41d2ce0bd6eb3aa27

Contents?: true

Size: 1.27 KB

Versions: 132

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

module Bundler
  class CLI::Platform
    attr_reader :options
    def initialize(options)
      @options = options
    end

    def run
      ruby_version = if Bundler.locked_gems
        Bundler.locked_gems.ruby_version&.gsub(/p\d+\Z/, "")
      else
        Bundler.definition.ruby_version&.single_version_string
      end

      output = []

      if options[:ruby]
        if ruby_version
          output << ruby_version
        else
          output << "No ruby version specified"
        end
      else
        platforms = Bundler.definition.platforms.map {|p| "* #{p}" }

        output << "Your platform is: #{Gem::Platform.local}"
        output << "Your app has gems that work on these platforms:\n#{platforms.join("\n")}"

        if ruby_version
          output << "Your Gemfile specifies a Ruby version requirement:\n* #{ruby_version}"

          begin
            Bundler.definition.validate_runtime!
            output << "Your current platform satisfies the Ruby version requirement."
          rescue RubyVersionMismatch => e
            output << e.message
          end
        else
          output << "Your Gemfile does not specify a Ruby version requirement."
        end
      end

      Bundler.ui.info output.join("\n\n")
    end
  end
end

Version data entries

132 entries across 132 versions & 4 rubygems

Version Path
bundler-2.5.15 lib/bundler/cli/platform.rb
rubygems-update-3.5.14 bundler/lib/bundler/cli/platform.rb
bundler-2.5.14 lib/bundler/cli/platform.rb
rubygems-update-3.5.13 bundler/lib/bundler/cli/platform.rb
bundler-2.5.13 lib/bundler/cli/platform.rb
rubygems-update-3.5.12 bundler/lib/bundler/cli/platform.rb
bundler-2.5.12 lib/bundler/cli/platform.rb
rubygems-update-3.5.10 bundler/lib/bundler/cli/platform.rb
bundler-2.5.10 lib/bundler/cli/platform.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/cli/platform.rb
rubygems-update-3.5.9 bundler/lib/bundler/cli/platform.rb
bundler-2.5.9 lib/bundler/cli/platform.rb
rubygems-update-3.5.8 bundler/lib/bundler/cli/platform.rb
bundler-2.5.8 lib/bundler/cli/platform.rb
rubygems-update-3.5.7 bundler/lib/bundler/cli/platform.rb
bundler-2.5.7 lib/bundler/cli/platform.rb
direct7-0.0.13 vendor/bundle/ruby/2.7.0/gems/bundler-2.4.21/lib/bundler/cli/platform.rb
rubygems-update-3.5.6 bundler/lib/bundler/cli/platform.rb
bundler-2.5.6 lib/bundler/cli/platform.rb
direct7-0.0.12 vendor/bundle/ruby/2.7.0/gems/bundler-2.4.21/lib/bundler/cli/platform.rb