Sha256: 3f9f42c8b8612439f8fe959e1c0ebb7b3ed0d16654c0698e64492837e12cab07

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

require "sod"

module Git
  module Lint
    module CLI
      # The main Command Line Interface (CLI) object.
      class Shell
        include Dependencies[:defaults_path, :xdg_config, :specification]

        def initialize(context: Sod::Context, dsl: Sod, **)
          super(**)
          @context = context
          @dsl = dsl
        end

        def call(...) = cli.call(...)

        private

        attr_reader :context, :dsl

        def cli
          context = build_context

          dsl.new "git-lint", banner: specification.banner do
            on(Sod::Prefabs::Commands::Config, context:)

            on "analyze", "Analyze branch or commit(s)." do
              on Actions::Analyze::Branch
              on Actions::Analyze::Commit
            end

            on Actions::Hook
            on(Sod::Prefabs::Actions::Version, context:)
            on Sod::Prefabs::Actions::Help, self
          end
        end

        def build_context
          context[defaults_path:, xdg_config:, version_label: specification.labeled_version]
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
git-lint-9.1.0 lib/git/lint/cli/shell.rb
git-lint-9.0.0 lib/git/lint/cli/shell.rb