Sha256: 0a1f620bd89c3e6415cad30ecfe2e01dfd83172b31e00b4838b978d41cedba54

Contents?: true

Size: 1.73 KB

Versions: 2

Compression:

Stored size: 1.73 KB

Contents

# frozen_string_literal: true

require "core"

module Pennyworth
  module CLI
    # The main Command Line Interface (CLI) object.
    class Shell
      include Actions::Import[
        :config,
        :encodings,
        :git_hub,
        :http_statuses,
        :ruby_gems,
        :standard_errors,
        :system_errors,
        :system_signals,
        :text,
        :specification,
        :logger
      ]

      def initialize parser: Parser.new, **dependencies
        super(**dependencies)
        @parser = parser
      end

      def call arguments = Core::EMPTY_ARRAY
        perform parser.call(arguments)
      rescue OptionParser::ParseError, KeyError => error
        logger.error { error.message }
      end

      private

      attr_reader :parser

      def perform configuration
        case configuration
          in action_config: Symbol => action then config.call action
          in action_encodings: true then encodings.call
          in action_git_hub: :organization
            git_hub.call "orgs/#{configuration.git_hub_organization}"
          in action_git_hub: :user then git_hub.call "users/#{configuration.git_hub_user}"
          in action_http_statuses: true then http_statuses.call
          in action_ruby_gems: true
            ruby_gems.call "owners/#{configuration.ruby_gems_owner}/gems.json"
          in action_standard_errors: true then standard_errors.call
          in action_system_errors: true then system_errors.call
          in action_system_signals: true then system_signals.call
          in action_text: String => content then text.call content
          in action_version: true then logger.info { specification.labeled_version }
          else logger.any { parser.to_s }
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pennyworth-14.1.1 lib/pennyworth/cli/shell.rb
pennyworth-14.1.0 lib/pennyworth/cli/shell.rb