diff options
Diffstat (limited to 'lib/irb/cmd/chws.rb')
-rw-r--r-- | lib/irb/cmd/chws.rb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/irb/cmd/chws.rb b/lib/irb/cmd/chws.rb new file mode 100644 index 0000000..73fc196 --- /dev/null +++ b/lib/irb/cmd/chws.rb @@ -0,0 +1,32 @@ +# +# change-ws.rb - +# $Release Version: 0.9.6$ +# $Revision: 25189 $ +# by Keiju ISHITSUKA(keiju@ruby-lang.org) +# +# -- +# +# +# + +require "irb/cmd/nop.rb" +require "irb/ext/change-ws.rb" + +module IRB + module ExtendCommand + + class CurrentWorkingWorkspace<Nop + def execute(*obj) + irb_context.main + end + end + + class ChangeWorkspace<Nop + def execute(*obj) + irb_context.change_workspace(*obj) + irb_context.main + end + end + end +end + |