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.217.130
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/lib/tracer.rb - # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # Loading the gem "tracer" will cause it to extend IRB commands with: # https://github.com/ruby/tracer/blob/v0.2.2/lib/tracer/irb.rb begin require "tracer" rescue LoadError $stderr.puts "Tracer extension of IRB is enabled but tracer gem wasn't found." return # This is about to disable loading below end module IRB class CallTracer < ::CallTracer IRB_DIR = File.expand_path('../..', __dir__) def skip?(tp) super || tp.path.match?(IRB_DIR) || tp.path.match?('<internal:prelude>') end end class WorkSpace alias __evaluate__ evaluate # Evaluate the context of this workspace and use the Tracer library to # output the exact lines of code are being executed in chronological order. # # See https://github.com/ruby/tracer for more information. def evaluate(statements, file = __FILE__, line = __LINE__) if IRB.conf[:USE_TRACER] == true CallTracer.new(colorize: Color.colorable?).start do __evaluate__(statements, file, line) end else __evaluate__(statements, file, line) end end end end