Current Path : /proc/thread-self/root/proc/thread-self/root/opt/alt/ruby27/share/ruby/optparse/ |
Current File : //proc/thread-self/root/proc/thread-self/root/opt/alt/ruby27/share/ruby/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