Class: Jack::Help

Inherits:
Object
  • Object
show all
Defined in:
lib/jack/help.rb

Class Method Summary collapse

Class Method Details

.configObject

Thor auto generates the subcommand help menu. Leaving here in case we figure out a way to override this Thor behavior.



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/jack/help.rb', line 32

def config
<<-EOL
Manage the environment's config.  Can use this to download the environment's config to jack/cfg folder or upload config in jack/cfg folder and apply it to the environment.

Example:

$ jack config download hi-web-stag-1

For more info:

$ jack help config

$ jack config help upload

$ jack config help download
EOL
end

.createObject



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

.terminateObject



20
21
22
23
24
25
26
27
28
# File 'lib/jack/help.rb', line 20

def terminate
<<-EOL
Deletes Elastic Beanstalk environment.

Example:

$ jack terminate hi-web-stag-1
EOL
end