From 33d738b3f8e4859a8adb8247e7349acf5f8d9c5a Mon Sep 17 00:00:00 2001 From: Matt Griffin Date: Mon, 9 Jan 2012 17:15:20 -0500 Subject: [PATCH] Return some whitespace that was accidentally removed --- lib/foreman/cli.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/foreman/cli.rb b/lib/foreman/cli.rb index f8c025b..cb259c0 100644 --- a/lib/foreman/cli.rb +++ b/lib/foreman/cli.rb @@ -5,7 +5,9 @@ require "thor" require "yaml" class Foreman::CLI < Thor + class_option :procfile, :type => :string, :aliases => "-f", :desc => "Default: Procfile" + desc "start", "Start the application" method_option :env, :type => :string, :aliases => "-e", :desc => "Specify an environment file to load, defaults to .env"