Sha256: 9ba4cf6bc17e460b0a15bbe818483c8229e095833c8021dbdd5b109d2483f6e7

Contents?: true

Size: 737 Bytes

Versions: 1

Compression:

Stored size: 737 Bytes

Contents

# frozen_string_literal: true

require "optparse"

module Runger # :nodoc:
  # Initializes the OptionParser instance using the given configuration
  class OptionParserBuilder
    class << self
      def call(options)
        OptionParser.new do |opts|
          options.each do |key, descriptor|
            opts.on(*option_parser_on_args(key, **descriptor)) do |val|
              yield [key, val]
            end
          end
        end
      end

      private

      def option_parser_on_args(key, flag: false, desc: nil, type: ::String)
        on_args = ["--#{key.to_s.tr("_", "-")}#{flag ? "" : " VALUE"}"]
        on_args << type unless flag
        on_args << desc unless desc.nil?
        on_args
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
runger_config-4.0.0 lib/runger/option_parser_builder.rb