Sha256: 3d929d007900a18178aa5816623833a7e1a1934d8fd81587d41ab73877e89ba7

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

# frozen_string_literal: true

module Milestoner
  module CLI
    # The main Command Line Interface (CLI) object.
    class Shell
      ACTIONS = {
        config: Actions::Config.new,
        publish: Actions::Publish.new,
        status: Actions::Status.new
      }.freeze

      def initialize parser: Parser.new, actions: ACTIONS, container: Container
        @parser = parser
        @actions = actions
        @container = container
      end

      def call arguments = []
        perform parser.call(arguments)
      rescue OptionParser::ParseError, Error => error
        logger.error { error.message }
      end

      private

      attr_reader :parser, :actions, :container

      def perform configuration
        case configuration
          in action_config: Symbol => action then config action
          in action_publish: true then publish configuration
          in action_status: true then status
          in action_version: true then logger.info { specification.labeled_version }
          else usage
        end
      end

      def config(action) = actions.fetch(__method__).call(action)

      def publish(configuration) = actions.fetch(__method__).call(configuration)

      def status = actions.fetch(__method__).call

      def usage = logger.unknown { parser.to_s }

      def specification = container[__method__]

      def logger = container[__method__]
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
milestoner-13.3.1 lib/milestoner/cli/shell.rb
milestoner-13.3.0 lib/milestoner/cli/shell.rb
milestoner-13.2.0 lib/milestoner/cli/shell.rb