dolphins7.skeleton/lib/twenty/command/up.rb

15 lines
303 B
Ruby

class Twenty::Command::Up < Twenty::Command
set_banner usage: "twenty up [OPTIONS]",
description: "Start the twenty web server"
def run
options = parse_options(argv)
options.help ? show_help : run_command
end
private
def run_command
warn "[twenty] up..."
end
end