Sha256: 4ba73cef7fc480be6e65c640c751cd80d9490825dcb76e925f547f9be0454479
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
# frozen_string_literal: true require "core" module Git module Lint module CLI # The main Command Line Interface (CLI) object. class Shell include Actions::Import[ :analyze_branch, :analyze_commit, :config, :hook, :specification, :logger ] def initialize(parser: Parser.new, **) super(**) @parser = parser end def call arguments = Core::EMPTY_ARRAY act_on parser.call(arguments) rescue OptionParser::ParseError, Errors::Base => error logger.error { error.message } end private attr_reader :parser def act_on configuration case configuration in action_analyze: true, analyze_sha: nil then analyze_branch.call in action_analyze: true, analyze_sha: String => sha then analyze_commit.call sha in action_config: Symbol => action then config.call action in action_hook: Pathname => path then hook.call path in action_version: true then logger.info { specification.labeled_version } else logger.any { parser.to_s } end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
git-lint-5.2.0 | lib/git/lint/cli/shell.rb |
git-lint-5.1.2 | lib/git/lint/cli/shell.rb |
git-lint-5.1.1 | lib/git/lint/cli/shell.rb |