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.



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

.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

.deployObject



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

.terminateObject



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