lib/percheron/commands/main.rb in percheron-0.7.6 vs lib/percheron/commands/main.rb in percheron-0.7.7

- old
+ new

@@ -1,17 +1,17 @@ module Percheron module Commands class Main < Abstract - subcommand %w(list status), "List stacks and it's containers", List + subcommand %w(list status), "List stacks and it's units", List subcommand 'console', 'Start a pry console session', Console subcommand 'start', 'Start a stack', Start subcommand 'stop', 'Stop a stack', Stop subcommand 'restart', 'Restart a stack', Restart subcommand 'build', 'Build images for a stack', Build - subcommand 'create', 'Build images and create containers for a stack', Create + subcommand 'create', 'Build images and create units for a stack', Create subcommand 'recreate', 'Recreate a stack', Recreate subcommand 'purge', 'Purge a stack', Purge - subcommand 'shell', 'Shell into a container', Shell - subcommand 'logs', 'Show logs for a container', Logs + subcommand 'shell', 'Shell into a unit', Shell + subcommand 'logs', 'Show logs for a unit', Logs end end end