diff options
author | Stan Lo <[email protected]> | 2023-08-01 13:51:26 +0100 |
---|---|---|
committer | git <[email protected]> | 2023-08-01 12:51:30 +0000 |
commit | f11ac06337fc56104172c3241393fd95d3a6c60d (patch) | |
tree | d7284ae191b405f4a31425e2703e0914b78ee2aa /lib/irb/cmd/chws.rb | |
parent | 382678d4112f4afc6272244c22924d2b004274b1 (diff) |
[ruby/irb] Add workspace category
(https://github.com/ruby/irb/pull/661)
* Create a new Workspace command category
* Update readme
https://github.com/ruby/irb/commit/310650c213
Diffstat (limited to 'lib/irb/cmd/chws.rb')
-rw-r--r-- | lib/irb/cmd/chws.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/irb/cmd/chws.rb b/lib/irb/cmd/chws.rb index 44712fa445..31045f9bbb 100644 --- a/lib/irb/cmd/chws.rb +++ b/lib/irb/cmd/chws.rb @@ -13,7 +13,7 @@ module IRB module ExtendCommand class CurrentWorkingWorkspace < Nop - category "IRB" + category "Workspace" description "Show the current workspace." def execute(*obj) @@ -22,7 +22,7 @@ module IRB end class ChangeWorkspace < Nop - category "IRB" + category "Workspace" description "Change the current workspace to an object." def execute(*obj) |