Method: Codebuild::Init.cli_options
- Defined in:
- lib/codebuild/init.rb
.cli_options ⇒ Object
Ugly, this is how I can get the options from to match with this Thor::Group
4 5 6 7 8 9 10 11 12 13 |
# File 'lib/codebuild/init.rb', line 4 def self. [ [:force, type: :boolean, desc: "Bypass overwrite are you sure prompt for existing files"], [:name, desc: "CodeBuild project name"], [:mode, default: "light", desc: "Modes: light or full"], [:template, desc: "Custom template to use"], [:template_mode, desc: "Template mode: replace or additive"], [:type, desc: "Type option creates a subfolder under .codebuild"], ] end |