File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/pry-0.13.1/lib/pry/commands/

Viewing File: pry_version.rb

# frozen_string_literal: true

class Pry
  class Command
    class Version < Pry::ClassCommand
      match 'pry-version'
      group 'Misc'
      description 'Show Pry version.'

      banner <<-'BANNER'
        Show Pry version.
      BANNER

      def process
        output.puts "Pry version: #{Pry::VERSION} on Ruby #{RUBY_VERSION}."
      end
    end

    Pry::Commands.add_command(Pry::Command::Version)
  end
end