X7ROOT File Manager
Current Path:
/opt/alt/ruby18/lib64/ruby/1.8
opt
/
alt
/
ruby18
/
lib64
/
ruby
/
1.8
/
ðŸ“
..
📄
English.rb
(5.6 KB)
📄
Env.rb
(274 B)
📄
abbrev.rb
(2.5 KB)
📄
base64.rb
(3.37 KB)
📄
benchmark.rb
(17.73 KB)
ðŸ“
bigdecimal
ðŸ“
cgi
📄
cgi-lib.rb
(6.89 KB)
📄
cgi.rb
(73.74 KB)
📄
complex.rb
(12.84 KB)
📄
csv.rb
(24.46 KB)
ðŸ“
date
📄
date.rb
(53.02 KB)
📄
date2.rb
(128 B)
📄
debug.rb
(20.61 KB)
📄
delegate.rb
(8.81 KB)
ðŸ“
digest
📄
digest.rb
(1.12 KB)
ðŸ“
dl
ðŸ“
drb
📄
drb.rb
(19 B)
📄
e2mmap.rb
(4.04 KB)
📄
erb.rb
(21.38 KB)
📄
eregex.rb
(487 B)
📄
expect.rb
(633 B)
📄
fileutils.rb
(42.23 KB)
📄
finalize.rb
(5.38 KB)
📄
find.rb
(1.84 KB)
📄
forwardable.rb
(6.16 KB)
📄
ftools.rb
(6.17 KB)
📄
generator.rb
(8.1 KB)
📄
getoptlong.rb
(14.88 KB)
📄
getopts.rb
(2.25 KB)
📄
gserver.rb
(6.43 KB)
📄
importenv.rb
(590 B)
ðŸ“
io
📄
ipaddr.rb
(21.96 KB)
ðŸ“
irb
📄
irb.rb
(7.43 KB)
📄
jcode.rb
(4.3 KB)
📄
kconv.rb
(8.12 KB)
📄
logger.rb
(17.59 KB)
📄
mailread.rb
(1.28 KB)
📄
mathn.rb
(5.42 KB)
📄
matrix.rb
(27.21 KB)
📄
md5.rb
(411 B)
📄
mkmf.rb
(50.65 KB)
📄
monitor.rb
(7.93 KB)
📄
mutex_m.rb
(2.07 KB)
ðŸ“
net
📄
observer.rb
(5.15 KB)
📄
open-uri.rb
(20.49 KB)
📄
open3.rb
(2.1 KB)
ðŸ“
openssl
📄
openssl.rb
(575 B)
ðŸ“
optparse
📄
optparse.rb
(47.12 KB)
📄
ostruct.rb
(3.35 KB)
📄
parsearg.rb
(1.55 KB)
📄
parsedate.rb
(1.33 KB)
📄
pathname.rb
(29.39 KB)
📄
ping.rb
(1.48 KB)
📄
pp.rb
(15.97 KB)
📄
prettyprint.rb
(18.33 KB)
📄
profile.rb
(90 B)
📄
profiler.rb
(1.59 KB)
📄
pstore.rb
(11.15 KB)
ðŸ“
racc
📄
rational.rb
(12.05 KB)
ðŸ“
rdoc
📄
readbytes.rb
(835 B)
📄
resolv-replace.rb
(1.55 KB)
📄
resolv.rb
(56.83 KB)
ðŸ“
rexml
ðŸ“
rinda
ðŸ“
rss
📄
rss.rb
(504 B)
📄
rubyunit.rb
(180 B)
ðŸ“
runit
📄
scanf.rb
(20.63 KB)
📄
securerandom.rb
(4.27 KB)
📄
set.rb
(27.08 KB)
📄
sha1.rb
(418 B)
ðŸ“
shell
📄
shell.rb
(4.66 KB)
📄
shellwords.rb
(3.99 KB)
📄
singleton.rb
(8.08 KB)
ðŸ“
soap
📄
sync.rb
(6.09 KB)
📄
tempfile.rb
(4.86 KB)
ðŸ“
test
📄
thread.rb
(104 B)
📄
thwait.rb
(4.32 KB)
📄
time.rb
(31.58 KB)
📄
timeout.rb
(3 KB)
📄
tmpdir.rb
(3.69 KB)
📄
tracer.rb
(2.73 KB)
📄
tsort.rb
(7.99 KB)
📄
un.rb
(4.54 KB)
ðŸ“
uri
📄
uri.rb
(710 B)
📄
weakref.rb
(2.68 KB)
ðŸ“
webrick
📄
webrick.rb
(811 B)
ðŸ“
wsdl
ðŸ“
x86_64-linux
ðŸ“
xmlrpc
ðŸ“
xsd
ðŸ“
yaml
📄
yaml.rb
(12.36 KB)
Editing: tracer.rb
# # tracer.rb - # $Release Version: 0.2$ # $Revision: 1.8 $ # $Date: 1998/05/19 03:42:49 $ # by Keiju ISHITSUKA(Nippon Rational Inc.) # # -- # # # # # tracer main class # class Tracer @RCS_ID='-$Id: tracer.rb,v 1.8 1998/05/19 03:42:49 keiju Exp keiju $-' @stdout = STDOUT @verbose = false class << self attr :verbose, true alias verbose? verbose attr :stdout, true end EVENT_SYMBOL = { "line" => "-", "call" => ">", "return" => "<", "class" => "C", "end" => "E", "c-call" => ">", "c-return" => "<", } def initialize @threads = Hash.new if defined? Thread.main @threads[Thread.main.object_id] = 0 else @threads[Thread.current.object_id] = 0 end @get_line_procs = {} @filters = [] end def stdout Tracer.stdout end def on if block_given? on begin yield ensure off end else set_trace_func method(:trace_func).to_proc stdout.print "Trace on\n" if Tracer.verbose? end end def off set_trace_func nil stdout.print "Trace off\n" if Tracer.verbose? end def add_filter(p = proc) @filters.push p end def set_get_line_procs(file, p = proc) @get_line_procs[file] = p end def get_line(file, line) if p = @get_line_procs[file] return p.call(line) end unless list = SCRIPT_LINES__[file] begin f = open(file) begin SCRIPT_LINES__[file] = list = f.readlines ensure f.close end rescue SCRIPT_LINES__[file] = list = [] end end if l = list[line - 1] l else "-\n" end end def get_thread_no if no = @threads[Thread.current.object_id] no else @threads[Thread.current.object_id] = @threads.size end end def trace_func(event, file, line, id, binding, klass, *) return if file == __FILE__ for p in @filters return unless p.call event, file, line, id, binding, klass end saved_crit = Thread.critical Thread.critical = true stdout.printf("#%d:%s:%d:%s:%s: %s", get_thread_no, file, line, klass || '', EVENT_SYMBOL[event], get_line(file, line)) Thread.critical = saved_crit end Single = new def Tracer.on if block_given? Single.on{yield} else Single.on end end def Tracer.off Single.off end def Tracer.set_get_line_procs(file_name, p = proc) Single.set_get_line_procs(file_name, p) end def Tracer.add_filter(p = proc) Single.add_filter(p) end end SCRIPT_LINES__ = {} unless defined? SCRIPT_LINES__ if $0 == __FILE__ # direct call $0 = ARGV[0] ARGV.shift Tracer.on require $0 elsif caller(0).size == 1 Tracer.on end
Upload File
Create Folder