Merge pull request #183 from technomancy/app_root

Look for .env and app_root in the same dir as the Procfile.
This commit is contained in:
David Dollar
2012-04-23 12:20:10 -07:00
2 changed files with 5 additions and 3 deletions

View File

@@ -79,7 +79,10 @@ private ######################################################################
end
def engine
@engine ||= Foreman::Engine.new(procfile, options)
root = File.expand_path(File.dirname(procfile))
env = File.expand_path(File.join(root, ".env"))
@engine ||= Foreman::Engine.new(procfile, options.merge({:app_root => root,
:env => env}))
end
def procfile

View File

@@ -22,7 +22,7 @@ class Foreman::Engine
def initialize(procfile, options={})
@procfile = Foreman::Procfile.new(procfile)
@directory = options[:app_root] || File.expand_path(File.dirname(procfile))
@directory = options[:app_root]
@options = options.dup
@environment = read_environment_files(options[:env])
@output_mutex = Mutex.new
@@ -214,7 +214,6 @@ private ######################################################################
environment.merge!(Foreman::Engine.read_environment(filename))
end
environment.merge!(Foreman::Engine.read_environment(".env")) unless filenames
environment
end
end