module Gem::Tasks::Printing

def debug(message)

Parameters:
  • message (String) --
def debug(message)
  if (Rake.verbose && Rake.application.options.trace)
    $stderr.puts "#{DEBUG_PREFIX} #{message}"
  end
end

def error(message)

Parameters:
  • message (String) --
def error(message)
  $stderr.puts "#{ERROR_PREFIX} #{message}"
end

def fu_output_message(message)

Other tags:
    Since: - 0.2.1

Parameters:
  • message (String) --
def fu_output_message(message)
  debug(message)
end

def status(message)

Parameters:
  • message (String) --
def status(message)
  if Rake.verbose
    $stdout.puts "#{STATUS_PREFIX} #{message}"
  end
end