class Foreman::Engine

def initialize(procfile, options={})

def initialize(procfile, options={})
  @procfile  = Foreman::Procfile.new(procfile)
  @directory = File.expand_path(File.dirname(procfile))
  @options = options
  @environment = read_environment_files(options[:env])
  @output_mutex = Mutex.new
end