class Thor::Shell::Color

Public Instance Methods

say(string, color=:WHITE, nl=true, prefix=true) click to toggle source
Calls superclass method
# File lib/masterbaker/cli.rb, line 7
def say(string, color=:WHITE, nl=true, prefix=true)

  if prefix
    #super '★', :green, false
    super ' Masterbaker ', :white, false
    #super '★', :green, false
    super ':: ', :white, false
  end

  super(string, color, nl)
end