I can't find where the color_puts would come from in the mod_passenger installer... any ideas?
+1
A:
Looked up myself just what you meant, since it's more fun than working.
Check the require
statements at the top of the file - you'll see that there are only 3 possible sources, given that color_puts
is not a Ruby standard.
Turns out, it's in abstract_installer.rb.
def color_print(text)
STDOUT.write(ConsoleTextTemplate.new(:text => text).result)
STDOUT.flush
end
def color_puts(text)
color_print("#{text}\n")
end
Matchu
2010-03-23 19:24:46
Sweet, thanks.Looks like http://github.com/lennart/passenger/blob/master/lib/phusion_passenger/console_text_template.rb has a bit to say as well, (kinda figured from the lack of escapes haha) but have a good one
Kyle
2010-03-23 19:34:43