module Turbolog::Color
Public Class Methods
blue(mytext)
click to toggle source
# File lib/turbosack/helpers.rb, line 7 def Color.blue(mytext) "\e[34m#{mytext}\e[0m".center(40) end
red(mytext)
click to toggle source
# File lib/turbosack/helpers.rb, line 3 def Color.red(mytext) "\e[31m#{mytext}\e[0m".center(40) end