Remove some debugging puts

This commit is contained in:
Bob Potter 2012-02-01 19:25:25 -06:00
parent fa686e944e
commit 71b9b0804d
1 changed files with 0 additions and 2 deletions

View File

@ -9,13 +9,11 @@ class Foreman::Export::God < Foreman::Export::Base
app = self.app || File.basename(engine.directory)
base_config = ERB.new(base_template).result(binding)
puts base_config
write_file(File.join(location, "#{app}.god"), base_config)
end
def extension(process_name)
p extensions
if extensions.has_key?(process_name)
ERB.new(extension_template(process_name)).result(binding)
else