Sha256: c3bd301ad0f1ffe222cf10bd567fa8144147c0c2752e705c76636ebb66eb8724
Contents?: true
Size: 420 Bytes
Versions: 6796
Compression:
Stored size: 420 Bytes
Contents
# 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
Version data entries
6,796 entries across 6,792 versions & 31 rubygems