Sha256: 8afc9904082131f629c21f2efed5755a8938cd41b230b94ba56b2b99e24b7cc1

Contents?: true

Size: 1.41 KB

Versions: 7

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true

require "refinements/structs"

module Pennyworth
  module CLI
    module Parsers
      # Handles parsing of Command Line Interface (CLI) GitHub options.
      class GitHub
        using Refinements::Structs

        def self.call(...) = new(...).call

        def initialize configuration = Configuration::Loader.call, client: Parser::CLIENT
          @configuration = configuration
          @client = client
        end

        def call arguments = []
          client.separator "\nGITHUB OPTIONS:\n"
          private_methods.sort.grep(/add_/).each { |method| __send__ method }
          client.parse arguments
          configuration
        end

        private

        attr_reader :configuration, :client

        def add_organization
          client.on(
            "--organization [HANDLE]",
            %(Set organization. Default: "#{organization}".)
          ) do |handle|
            configuration.merge! action_git_hub: :organization,
                                 git_hub_organization: handle || organization
          end
        end

        def add_user
          client.on "--user [HANDLE]", %(Set user. Default: "#{user}".) do |handle|
            configuration.merge! action_git_hub: :user, git_hub_user: handle || user
          end
        end

        def organization = configuration.git_hub_organization

        def user = configuration.git_hub_user
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pennyworth-12.3.1 lib/pennyworth/cli/parsers/git_hub.rb
pennyworth-12.3.0 lib/pennyworth/cli/parsers/git_hub.rb
pennyworth-12.2.0 lib/pennyworth/cli/parsers/git_hub.rb
pennyworth-12.1.0 lib/pennyworth/cli/parsers/git_hub.rb
pennyworth-12.0.2 lib/pennyworth/cli/parsers/git_hub.rb
pennyworth-12.0.1 lib/pennyworth/cli/parsers/git_hub.rb
pennyworth-12.0.0 lib/pennyworth/cli/parsers/git_hub.rb