diff options
Diffstat (limited to 'lib/irb/command/help.rb')
-rw-r--r-- | lib/irb/command/help.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/irb/command/help.rb b/lib/irb/command/help.rb new file mode 100644 index 0000000000..67cc31a0bf --- /dev/null +++ b/lib/irb/command/help.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +require_relative "show_cmds" + +module IRB + module Command + class Help < ShowCmds + category "IRB" + description "List all available commands and their description." + end + end +end |