ruby/lib/irb/cmd/help.rb

12 lines
231 B
Ruby

# frozen_string_literal: true
require_relative "show_cmds"
module IRB
module ExtendCommand
class Help < ShowCmds
category "IRB"
description "List all available commands and their description."
end
end
end