Class: Jack::Help
- Inherits:
-
Object
- Object
- Jack::Help
- Defined in:
- lib/jack/help.rb
Class Method Summary collapse
-
.config ⇒ Object
Thor auto generates the subcommand help menu.
- .create ⇒ Object
- .deploy ⇒ Object
- .terminate ⇒ Object
Class Method Details
.config ⇒ Object
Thor auto generates the subcommand help menu. Leaving here in case we figure out a way to override this Thor behavior.
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/jack/help.rb', line 42 def config <<-EOL Manage the environment's config. Can use this to download the environment's config to jack/cfg folder or upload and apply config in jack/cfg folder to the environment. Example: $ jack config get hi-web-stag-1 For more info: $ jack help config $ jack config help upload $ jack config help download EOL end |
.create ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/jack/help.rb', line 4 def create <<-EOL Creates a new environment using the configuration in jack/cfg folder. The AWS sample app is initially used for the newly created environment. The sample app is used as a starting point to make sure that the environment is working before you introduce your own app code. #{convention} Example: $ jack create hi-web-stag-1 $ jack create -c myconfig hi-web-stag-1 $ jack create -a myapp -c myconfig hi-web-stag-1 EOL end |
.deploy ⇒ Object
20 21 22 23 24 25 26 27 28 |
# File 'lib/jack/help.rb', line 20 def deploy <<-EOL Deploy code to the Elastic Beanstalk environment. Example: $ jack deploy hi-web-stag-1 EOL end |
.terminate ⇒ Object
30 31 32 33 34 35 36 37 38 |
# File 'lib/jack/help.rb', line 30 def terminate <<-EOL Deletes Elastic Beanstalk environment. Example: $ jack terminate hi-web-stag-1 EOL end |