ÿØÿà JPEG ÿþ;
| Server IP : 68.65.120.201 / Your IP : 216.73.216.21 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/proc/self/root/opt/alt/ruby25/lib64/ruby/2.5.0/irb/cmd/ |
Upload File : |
# frozen_string_literal: false
#
# change-ws.rb -
# $Release Version: 0.9.6$
# $Revision: 56371 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require "irb/cmd/nop.rb"
require "irb/ext/change-ws.rb"
# :stopdoc:
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
# :startdoc: