2011-10-14 15:40:41 +02:00
|
|
|
module Color
|
|
|
|
def colorize(text, color_code)
|
|
|
|
"\033[#{color_code}#{text}\033[0m"
|
|
|
|
end
|
|
|
|
|
|
|
|
def red(text)
|
|
|
|
colorize(text, "31m")
|
|
|
|
end
|
|
|
|
|
|
|
|
def green(text)
|
|
|
|
colorize(text, "32m")
|
|
|
|
end
|
|
|
|
|
2011-10-17 17:45:31 +02:00
|
|
|
def yellow(text)
|
|
|
|
colorize(text, "93m")
|
|
|
|
end
|
|
|
|
|
2011-10-14 15:40:41 +02:00
|
|
|
def command(string)
|
|
|
|
`#{string}`
|
2011-10-26 15:46:25 +02:00
|
|
|
if $?.to_i > 0
|
2011-10-14 15:40:41 +02:00
|
|
|
puts red " == #{string} - FAIL"
|
|
|
|
puts red " == Error during configure"
|
|
|
|
exit
|
|
|
|
else
|
|
|
|
puts green " == #{string} - OK"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|