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.103
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ri /
system /
BasicObject /
Delete
Unzip
Name
Size
Permission
Date
Action
%21%3d-i.ri
366
B
-rw-r--r--
2026-04-07 17:22
%21-i.ri
306
B
-rw-r--r--
2026-04-07 17:22
%3d%3d-i.ri
1.81
KB
-rw-r--r--
2026-04-07 17:22
__id__-i.ri
1.2
KB
-rw-r--r--
2026-04-07 17:22
__send__-i.ri
1.11
KB
-rw-r--r--
2026-04-07 17:22
cdesc-BasicObject.ri
3.85
KB
-rw-r--r--
2026-04-07 17:22
equal%3f-i.ri
1.7
KB
-rw-r--r--
2026-04-07 17:22
instance_eval-i.ri
1.51
KB
-rw-r--r--
2026-04-07 17:22
instance_exec-i.ri
900
B
-rw-r--r--
2026-04-07 17:22
method_missing-i.ri
1.54
KB
-rw-r--r--
2026-04-07 17:22
new-c.ri
313
B
-rw-r--r--
2026-04-07 17:22
singleton_method_added-i.ri
837
B
-rw-r--r--
2026-04-07 17:22
singleton_method_removed-i.ri
916
B
-rw-r--r--
2026-04-07 17:22
singleton_method_undefined-i.ri
811
B
-rw-r--r--
2026-04-07 17:22
Save
Rename
U:RDoc::AnyMethod[iI"method_missing:ETI"BasicObject#method_missing;TF:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"IInvoked by Ruby when <i>obj</i> is sent a message it cannot handle. ;TI"H<i>symbol</i> is the symbol for the method called, and <i>args</i> ;TI"Kare any arguments that were passed to it. By default, the interpreter ;TI"Iraises an error when this method is called. However, it is possible ;TI">to override the method to provide more dynamic behavior. ;TI"KIf it is decided that a particular method should not be handled, then ;TI"F<i>super</i> should be called, so that ancestors can pick up the ;TI"missing method. ;TI"The example below creates ;TI"Fa class <code>Roman</code>, which responds to methods with names ;TI"Gconsisting of roman numerals, returning the corresponding integer ;TI"values.;To:RDoc::Markup::BlankLine o:RDoc::Markup::Verbatim; [I"class Roman ;TI" def roman_to_int(str) ;TI" # ... ;TI" end ;TI" ;TI") def method_missing(symbol, *args) ;TI" str = symbol.id2name ;TI" begin ;TI" roman_to_int(str) ;TI" rescue ;TI" super(symbol, *args) ;TI" end ;TI" end ;TI" end ;TI" ;TI"r = Roman.new ;TI"r.iv #=> 4 ;TI"r.xxiii #=> 23 ;TI"r.mm #=> 2000 ;TI" r.foo #=> NoMethodError;T:@format0: @fileI"vm_eval.c;T:0@omit_headings_from_table_of_contents_below0I"7obj.method_missing(symbol [, *args] ) -> result ;T0[ I"(*args);T@0FI"BasicObject;TcRDoc::NormalClass00