2002-07-09 07:17:17 -04:00
|
|
|
#
|
2009-03-05 22:56:38 -05:00
|
|
|
# change-ws.rb -
|
2009-07-07 07:36:20 -04:00
|
|
|
# $Release Version: 0.9.6$
|
2002-07-09 07:17:17 -04:00
|
|
|
# $Revision$
|
2005-04-13 11:27:09 -04:00
|
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
2002-07-09 07:17:17 -04:00
|
|
|
#
|
|
|
|
# --
|
|
|
|
#
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-07-09 07:17:17 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
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
|
|
|
|
|