Class: Ops
- Inherits:
-
Object
- Object
- Ops
- Defined in:
- lib/ops.rb
Overview
executes commands based on local ‘ops.yml`
Defined Under Namespace
Classes: UnknownActionError
Constant Summary collapse
- CONFIG_FILE =
"ops.yml"- INVALID_SYNTAX_EXIT_CODE =
64- UNKNOWN_ACTION_EXIT_CODE =
65- ERROR_LOADING_APP_CONFIG_EXIT_CODE =
66- MIN_VERSION_NOT_MET_EXIT_CODE =
67
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(argv) ⇒ Ops
constructor
A new instance of Ops.
- #run ⇒ Object
Constructor Details
Class Method Details
.project_name ⇒ Object
28 29 30 |
# File 'lib/ops.rb', line 28 def project_name File.basename(::Dir.pwd) end |
Instance Method Details
#run ⇒ Object
40 41 42 43 44 45 46 47 48 49 |
# File 'lib/ops.rb', line 40 def run # "return" is here to allow specs to stub "exit" return exit(INVALID_SYNTAX_EXIT_CODE) unless syntax_valid? return exit(MIN_VERSION_NOT_MET_EXIT_CODE) unless min_version_met? run_action rescue UnknownActionError => e Output.error("Error: #{e}") exit(UNKNOWN_ACTION_EXIT_CODE) end |