Hacked By AnonymousFox

Current Path : /opt/alt/ruby30/share/rubygems/rubygems/optparse/lib/optparse/
Upload File :
Current File : //opt/alt/ruby30/share/rubygems/rubygems/optparse/lib/optparse/kwargs.rb

# frozen_string_literal: true
require 'rubygems/optparse/lib/optparse'

class Gem::OptionParser
  # :call-seq:
  #   define_by_keywords(options, method, **params)
  #
  # :include: ../../doc/optparse/creates_option.rdoc
  #
  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