Sha256: 1df34e433ffc4238f3e1d4f0cca22d433a4de107726be40679d87a4e2658f5b7

Contents?: true

Size: 1.62 KB

Versions: 3

Compression:

Stored size: 1.62 KB

Contents

# frozen_string_literal: true

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

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

      def call arguments = []
        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}/repos"
          in action_git_hub: :user then git_hub.call "users/#{configuration.git_hub_user}/repos"
          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_system_signals: true then system_signals.call
          in action_system_errors: true then system_errors.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

3 entries across 3 versions & 1 rubygems

Version Path
pennyworth-13.1.0 lib/pennyworth/cli/shell.rb
pennyworth-13.0.1 lib/pennyworth/cli/shell.rb
pennyworth-13.0.0 lib/pennyworth/cli/shell.rb