Hacked By AnonymousFox

Current Path : /opt/alt/ruby26/lib64/ruby/2.6.0/optparse/
Upload File :
Current File : //opt/alt/ruby26/lib64/ruby/2.6.0/optparse/kwargs.rb

# frozen_string_literal: true
require 'optparse'

class OptionParser
  def define_by_keywords(options, meth, **opts)
    meth.parameters.each do |type, name|
      case type
      when :key, :keyreq
        op, cl = *(type == :key ? %w"[ ]" : ["", ""])
        define("--#{name}=#{op}#{name.upcase}#{cl}", *opts[name]) do |o|
          options[name] = o
        end
      end
    end
    options
  end
end

Hacked By AnonymousFox1.0, Coded By AnonymousFox