Sha256: 715aa2f63da30fa5c8a0e8fb5d6d1ab73e37215191e6b1837f0c2c8dd4d09281
Contents?: true
Size: 727 Bytes
Versions: 2
Compression:
Stored size: 727 Bytes
Contents
module Percheron module Commands class Main < Abstract subcommand %w(list status), 'List stacks and its units', List subcommand 'console', '', Console subcommand 'start', 'Start a stack', Start subcommand 'stop', 'Stop a stack', Stop subcommand 'restart', 'Restart a stack', Restart subcommand %w(build rebuild), '(Re)build image(s) for a stack', Build subcommand %w(create recreate), '(Re)build image(s) and (re)create units for a stack', Create subcommand 'purge', 'Purge a stack', Purge subcommand 'shell', 'Shell into a unit', Shell subcommand 'logs', 'Show logs for a unit', Logs subcommand 'graph', 'Generate a stack graph', Graph end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
percheron-0.8.1 | lib/percheron/commands/main.rb |
percheron-0.8.0 | lib/percheron/commands/main.rb |