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.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby19 /
lib64 /
ruby /
1.9.1 /
rdoc /
Delete
Unzip
Name
Size
Permission
Date
Action
generator
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
markup
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
parser
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
ri
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
stats
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
alias.rb
2.12
KB
-rw-r--r--
2010-12-20 06:52
anon_class.rb
171
B
-rw-r--r--
2011-02-02 04:02
any_method.rb
4.54
KB
-rw-r--r--
2011-06-16 09:29
attr.rb
2.88
KB
-rw-r--r--
2011-06-16 09:29
class_module.rb
14.49
KB
-rw-r--r--
2011-08-06 01:51
code_object.rb
6.56
KB
-rw-r--r--
2011-08-06 01:51
code_objects.rb
535
B
-rw-r--r--
2010-04-01 12:15
constant.rb
1.5
KB
-rw-r--r--
2010-12-20 06:52
context.rb
28.14
KB
-rw-r--r--
2011-08-06 01:51
cross_reference.rb
5.82
KB
-rw-r--r--
2011-08-06 01:51
encoding.rb
2.52
KB
-rw-r--r--
2012-02-14 11:25
erbio.rb
794
B
-rw-r--r--
2011-05-15 16:25
generator.rb
1.3
KB
-rw-r--r--
2011-02-02 04:02
ghost_method.rb
141
B
-rw-r--r--
2010-04-01 12:15
include.rb
2.11
KB
-rw-r--r--
2010-12-20 06:52
known_classes.rb
2.58
KB
-rw-r--r--
2011-06-30 01:47
markup.rb
20.96
KB
-rw-r--r--
2011-08-27 04:28
meta_method.rb
126
B
-rw-r--r--
2010-04-01 12:15
method_attr.rb
7.57
KB
-rw-r--r--
2011-05-15 16:25
normal_class.rb
1.58
KB
-rw-r--r--
2011-02-02 04:02
normal_module.rb
1.24
KB
-rw-r--r--
2011-02-02 04:02
options.rb
18.79
KB
-rw-r--r--
2011-05-14 05:09
parser.rb
5.39
KB
-rw-r--r--
2011-08-27 04:28
rdoc.rb
11.97
KB
-rw-r--r--
2011-06-16 09:29
require.rb
963
B
-rw-r--r--
2010-12-20 06:52
ri.rb
230
B
-rw-r--r--
2010-04-01 12:15
ruby_lex.rb
26.07
KB
-rw-r--r--
2011-08-24 04:32
ruby_token.rb
10.14
KB
-rw-r--r--
2010-12-20 06:52
rubygems_hook.rb
4.5
KB
-rw-r--r--
2011-06-16 09:29
single_class.rb
359
B
-rw-r--r--
2011-02-02 04:02
stats.rb
9.52
KB
-rw-r--r--
2011-05-14 05:09
task.rb
7.5
KB
-rw-r--r--
2011-05-14 05:09
text.rb
7.22
KB
-rw-r--r--
2011-08-06 01:51
token_stream.rb
1015
B
-rw-r--r--
2010-12-20 06:52
top_level.rb
10.1
KB
-rw-r--r--
2011-06-30 01:47
Save
Rename
require 'rdoc' ## # RDoc uses generators to turn parsed source code in the form of an # RDoc::CodeObject tree into some form of output. RDoc comes with the HTML # generator RDoc::Generator::Darkfish and an ri data generator # RDoc::Generator::RI. # # = Registering a Generator # # Generators are registered by calling RDoc::RDoc.add_generator with the class # of the generator: # # class My::Awesome::Generator # RDoc::RDoc.add_generator self # end # # = Adding Options to +rdoc+ # # Before option processing in +rdoc+, RDoc::Options will call ::setup_options # on the generator class with an RDoc::Options instance. The generator can # use RDoc::Options#option_parser to add command-line options to the +rdoc+ # tool. See OptionParser for details on how to add options. # # You can extend the RDoc::Options instance with additional accessors for your # generator. # # = Generator Instantiation # # After parsing, RDoc::RDoc will instantiate a generator by calling # #initialize with an RDoc::Options instance. # # RDoc will then call #generate on the generator instance and pass in an Array # of RDoc::TopLevel instances, each representing a parsed file. You can use # the various class methods on RDoc::TopLevel and in the RDoc::CodeObject tree # to create your desired output format. module RDoc::Generator end