module RakePrettifier
Public Instance Methods
big_notice(task)
click to toggle source
# File lib/monsanto/rake_prettifier.rb, line 7 def big_notice(task) puts green("==>") + " " + task.name end
inflect(method)
click to toggle source
# File lib/monsanto/rake_prettifier.rb, line 3 def inflect(method) method.gsub("make", "making") end
medium_notice(task)
click to toggle source
# File lib/monsanto/rake_prettifier.rb, line 11 def medium_notice(task) puts green(" -->") + " " + task end
small_notice(subject)
click to toggle source
# File lib/monsanto/rake_prettifier.rb, line 15 def small_notice(subject) puts green(" ~-") + " Making " + subject end