module Gem::Tasks::Printing
def debug(message)
-
message
(String
) --
def debug(message) if Rake.application.options.trace $stderr.puts "#{DEBUG_PREFIX} #{message}" end end
def error(message)
-
message
(String
) --
def error(message) $stderr.puts "#{ERROR_PREFIX} #{message}" end
def status(message)
-
message
(String
) --
def status(message) $stdout.puts "#{STATUS_PREFIX} #{message}" end