Class: Ace::Git::Worktree::CLI::Commands::Prune

Inherits:
Support::Cli::Command
  • Object
show all
Includes:
SharedHelpers
Defined in:
lib/ace/git/worktree/cli/commands/prune.rb

Instance Method Summary collapse

Instance Method Details

#call(**options) ⇒ Object



30
31
32
33
34
35
36
37
# File 'lib/ace/git/worktree/cli/commands/prune.rb', line 30

def call(**options)
  display_config_summary("prune", options)

  # Convert ace-support-cli options to args array format
  args = options_to_args(options)

  Ace::Git::Worktree::Commands::PruneCommand.new.run(args)
end