Class: Kettle::Family::CLI::Release
- Inherits:
-
BaseCommand
- Object
- CommandKit::Command
- BaseCommand
- Kettle::Family::CLI::Release
- Includes:
- CommitOptions, ExecutionOptions, WorkflowOptions
- Defined in:
- lib/kettle/family/cli.rb
Instance Method Summary collapse
Methods included from CommitOptions
Methods included from WorkflowOptions
Methods included from ExecutionOptions
Methods inherited from BaseCommand
Methods included from SelectionOptions
Methods included from SharedOptions
Methods included from ReturningMain
Constructor Details
This class inherits a constructor from Kettle::Family::CLI::BaseCommand
Instance Method Details
#run(*args) ⇒ Object
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 |
# File 'lib/kettle/family/cli.rb', line 547 def run(*args) unexpected_arguments!(args) run_family( "release", publish: truthy_option?(:publish), release_start_step: [:start_step], release_skip_steps: [:skip_steps], release_fast_recovery: [:fast_recovery], release_fast_recovery_members: [:fast_recovery_members], release_skip_ci: truthy_option?(:skip_ci), release_skip_changelog: truthy_option?(:skip_changelog), release_local_ci: truthy_option?(:local_ci), release_continue_ci_failures: truthy_option?(:continue_ci_failures), release_ci_workflows: [:ci_workflows], release_skip_bundle_audit: truthy_option?(:skip_bundle_audit), release_skip_remotes: [:skip_remotes], release_required_remotes: [:required_remotes], release_secrets_provider: [:secrets_provider], release_auto_dependency_floors: !truthy_option?(:no_auto_floors), accept: !.key?(:accept) || [:accept], tag: truthy_option?(:tag), push: truthy_option?(:push) ) end |