Sha256: fb1d5adacd378122c0ab8eba3c758de0885185cca56c07848fdcc3c733bde453
Contents?: true
Size: 352 Bytes
Versions: 253
Compression:
Stored size: 352 Bytes
Contents
class Pry class Command::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
Version data entries
253 entries across 246 versions & 44 rubygems