ruby/lib/irb/command/info.rb

17 lines
252 B
Ruby

# frozen_string_literal: true
require_relative "debug"
module IRB
# :stopdoc:
module Command
class Info < DebugCommand
def execute(arg)
execute_debug_command(pre_cmds: "info #{arg}")
end
end
end
# :startdoc:
end