summaryrefslogtreecommitdiff
path: root/lib/irb/command/info.rb
blob: d08ce00a320aab68d3f5e29fb60dccab817d3968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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