Sha256: 24c3962c365a52fde775c090619bf8cb51c46e7a396855c710c032a354151c29
Contents?: true
Size: 838 Bytes
Versions: 15
Compression:
Stored size: 838 Bytes
Contents
require "optparse" <% namespace do %> module CLI # Assembles and parses all Command Line Interface (CLI) options. class Parser include Import[:configuration] CLIENT = OptionParser.new nil, 40, " " # Order is important. SECTIONS = [Parsers::Core].freeze def initialize sections: SECTIONS, client: CLIENT, **dependencies super(**dependencies) @sections = sections @client = client @configuration_duplicate = configuration.dup end def call arguments = [] sections.each { |section| section.call configuration_duplicate, client: } client.parse arguments configuration_duplicate.freeze end def to_s = client.to_s private attr_reader :sections, :client, :configuration_duplicate end end <% end %>
Version data entries
15 entries across 15 versions & 1 rubygems