mirror of
https://github.com/ruby/ruby.git
synced 2025-09-20 19:14:00 +02:00
12 lines
231 B
Ruby
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
|