gitextract_ucqxjbxu/ ├── .gitignore ├── .rubocop.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── hati-command.gemspec ├── lib/ │ ├── hati/ │ │ └── command.rb │ ├── hati_command/ │ │ ├── befehl.rb │ │ ├── callee.rb │ │ ├── cmd.rb │ │ ├── errors/ │ │ │ ├── base_error.rb │ │ │ ├── configuration_error.rb │ │ │ ├── fail_fast_error.rb │ │ │ └── transaction_error.rb │ │ ├── failure.rb │ │ ├── result.rb │ │ ├── success.rb │ │ └── version.rb │ └── hati_command.rb └── spec/ ├── integration/ │ └── hati_command/ │ ├── befehl_ar_transaction_spec.rb │ ├── befehl_spec.rb │ ├── callee_spec.rb │ └── cmd_spec.rb ├── spec_helper.rb ├── support/ │ ├── active_record.rb │ └── dummy.rb └── unit/ └── hati_command/ ├── befehl_config_spec.rb ├── callee_spec.rb ├── cmd_spec.rb ├── errors/ │ ├── base_error_spec.rb │ ├── configuration_error_spec.rb │ ├── fail_fast_error_spec.rb │ └── transaction_error_spec.rb ├── failure_spec.rb ├── result_spec.rb └── success_spec.rb