Class: Jets::Commands::Main
- Inherits:
-
Base
show all
- Defined in:
- lib/jets/commands/main.rb
Instance Method Summary
collapse
Methods inherited from Base
autocomplete, banner, dispatch, eager_load!, help_list, inherited, klass_from_namespace, namespace_from_class, namespaced_commands, perform, subclasses
Instance Method Details
#build ⇒ Object
11
12
13
|
# File 'lib/jets/commands/main.rb', line 11
def build
Build.new(options).run
end
|
#call(function_name, payload = '') ⇒ Object
77
78
79
|
# File 'lib/jets/commands/main.rb', line 77
def call(function_name, payload='')
Call.new(function_name, payload, options).run
end
|
#console ⇒ Object
57
58
59
|
# File 'lib/jets/commands/main.rb', line 57
def console
Console.run
end
|
#dbconsole ⇒ Object
63
64
65
|
# File 'lib/jets/commands/main.rb', line 63
def dbconsole
Dbconsole.start(*args)
end
|
#delete ⇒ Object
32
33
34
|
# File 'lib/jets/commands/main.rb', line 32
def delete
Delete.new(options).run
end
|
#deploy(environment = nil) ⇒ Object
Note the environment is here to trick the Thor parser to allowing an environment parameter. It is not actually set here. It is set earlier in cli.rb: set_jets_env_for_deploy_command!
#generate(generator, *args) ⇒ Object
83
84
85
|
# File 'lib/jets/commands/main.rb', line 83
def generate(generator, *args)
Jets::Generator.invoke(generator, *args)
end
|
#server ⇒ Object
40
41
42
43
44
45
46
47
|
# File 'lib/jets/commands/main.rb', line 40
def server
o = options
command = "bundle exec shotgun --port #{o[:port]} --host #{o[:host]}"
puts "=> #{command}".colorize(:green)
puts Jets::Booter.message
system(command)
end
|
#status ⇒ Object
89
90
91
|
# File 'lib/jets/commands/main.rb', line 89
def status
Jets::Cfn::Status.new(options).run
end
|
#version ⇒ Object
101
102
103
|
# File 'lib/jets/commands/main.rb', line 101
def version
puts Jets.version
end
|