Class: Dynomite::CLI
Instance Method Summary
collapse
Methods inherited from Command
alter_command_description, command_help, dispatch, exit_on_failure?, website
Instance Method Details
#completion(*params) ⇒ Object
33
34
35
|
# File 'lib/dynomite/cli.rb', line 33
def completion(*params)
Completer.new(CLI, *params).run
end
|
#completion_script ⇒ Object
#install ⇒ Object
27
28
29
|
# File 'lib/dynomite/cli.rb', line 27
def install
Install.new.run
end
|
#seed ⇒ Object
21
22
23
|
# File 'lib/dynomite/cli.rb', line 21
def seed
Seed.new.run
end
|
#version ⇒ Object
44
45
46
|
# File 'lib/dynomite/cli.rb', line 44
def version
puts VERSION
end
|