Module: Ace::GitCommit::CLI

Defined in:
lib/ace/git_commit/cli.rb,
lib/ace/git_commit/cli/commands/commit.rb

Overview

CLI namespace for ace-git-commit command loading.

ace-git-commit now uses a single-command ace-support-cli entrypoint that calls CLI::Commands::Commit directly from the executable.

Defined Under Namespace

Modules: Commands

Class Method Summary collapse

Class Method Details

.start(args) ⇒ Object

Entry point for CLI invocation (used by tests via cli_helpers)



18
19
20
# File 'lib/ace/git_commit/cli.rb', line 18

def self.start(args)
  Ace::Support::Cli::Runner.new(Commands::Commit).call(args: args)
end