From 0687baaf57ac2fef4ed5406d1a37e05658f8859f Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 14 Oct 2016 13:26:13 +0000 Subject: optparse/kwargs.rb * lib/optparse/kwargs.rb (OptionParser#define_by_keywords): [EXPERIMENTAL] extract command line option definitions from the information of keyword arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/optparse/kwargs.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/optparse/kwargs.rb (limited to 'lib/optparse/kwargs.rb') diff --git a/lib/optparse/kwargs.rb b/lib/optparse/kwargs.rb new file mode 100644 index 0000000000..ed58cc142b --- /dev/null +++ b/lib/optparse/kwargs.rb @@ -0,0 +1,17 @@ +# 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 -- cgit v1.2.3