module Percheron module CLI class MainCommand < AbstractCommand subcommand 'list', "List stacks and it's containers", ListCommand subcommand 'console', 'Start a pry console session', ConsoleCommand subcommand 'start', 'Start a stack', StartCommand subcommand 'stop', 'Stop a stack', StopCommand end end end