Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.144.252.248
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby20 /
lib64 /
ruby /
2.0.0 /
rake /
ext /
Delete
Unzip
Name
Size
Permission
Date
Action
core.rb
713
B
-rw-r--r--
2011-06-23 22:11
module.rb
1.19
KB
-rw-r--r--
2012-11-15 21:59
string.rb
5.6
KB
-rw-r--r--
2012-11-15 21:59
time.rb
292
B
-rw-r--r--
2012-11-15 21:59
Save
Rename
###################################################################### # Core extension library # class Module # Check for an existing method in the current class before extending. IF # the method already exists, then a warning is printed and the extension is # not added. Otherwise the block is yielded and any definitions in the # block will take effect. # # Usage: # # class String # rake_extension("xyz") do # def xyz # ... # end # end # end # def rake_extension(method) if method_defined?(method) $stderr.puts "WARNING: Possible conflict with Rake extension: #{self}##{method} already exists" else yield end end end