Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d4c2332c59 | ||
|
|
e257fc89c1 |
@@ -1,7 +1,7 @@
|
||||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
foreman (0.34.0)
|
||||
foreman (0.34.1)
|
||||
term-ansicolor (~> 1.0.5)
|
||||
thor (>= 0.13.6)
|
||||
|
||||
|
||||
@@ -5,7 +5,9 @@ require "thor"
|
||||
require "yaml"
|
||||
|
||||
class Foreman::CLI < Thor
|
||||
|
||||
|
||||
desc "start", "Start the application"
|
||||
|
||||
class_option :procfile, :type => :string, :aliases => "-f", :desc => "Default: Procfile"
|
||||
class_option :app_root, :type => :string, :aliases => "-d", :desc => "Default: Procfile directory"
|
||||
|
||||
@@ -20,7 +22,7 @@ class Foreman::CLI < Thor
|
||||
super
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
def start
|
||||
check_procfile!
|
||||
engine.start
|
||||
@@ -60,7 +62,7 @@ class Foreman::CLI < Thor
|
||||
error "no processes defined" unless engine.procfile.entries.length > 0
|
||||
display "valid procfile detected (#{engine.procfile.process_names.join(', ')})"
|
||||
end
|
||||
|
||||
|
||||
desc "run COMMAND", "Run a command using your application's environment"
|
||||
|
||||
def run(*args)
|
||||
@@ -73,7 +75,7 @@ class Foreman::CLI < Thor
|
||||
error "command not found: #{args.first}"
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
private ######################################################################
|
||||
|
||||
def check_procfile!
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
module Foreman
|
||||
|
||||
VERSION = "0.34.0"
|
||||
VERSION = "0.34.1"
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user