Sha256: ba104ae76d2fbf8234f5144cc9378a422f97790829337b6339ac40026d240d49
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
module Gem class Tasks # # Provides helper methods for printing messages. # # @api semipublic # module Printing # ANSI 'bright' color code ANSI_BRIGHT = "\e[1m" # ANSI 'clear' color code ANSI_CLEAR = "\e[0m" # ANSI 'green' color code ANSI_GREEN = "\e[32m" # ANSI 'yellow' color code ANSI_YELLOW = "\e[33m" # ANSI 'red' color code ANSI_RED = "\e[31m" # Prefix for all status messages STATUS_PREFIX = if $stdout.tty? "#{ANSI_GREEN}#{ANSI_BRIGHT}>>>#{ANSI_CLEAR}" else ">>>" end # Prefix for all debugging messages DEBUG_PREFIX = if $stderr.tty? "#{ANSI_YELLOW}#{ANSI_BRIGHT}>>>#{ANSI_CLEAR}" else ">>>" end # Prefix for all error messages ERROR_PREFIX = if $stderr.tty? "#{ANSI_RED}#{ANSI_BRIGHT}!!!#{ANSI_CLEAR}" else "!!!" end protected # # Prints a status message. # # @param [String] message # The message to print. # def status(message) $stdout.puts "#{STATUS_PREFIX} #{message}" end # # Prints a debugging message. # # @param [String] message # The message to print. # def debug(message) if Rake.application.options.trace $stderr.puts "#{DEBUG_PREFIX} #{message}" end end # # Prints an error message and exits. # # @param [String] message # The message to print. # def error(message) $stderr.puts "#{ERROR_PREFIX} #{message}" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubygems-tasks-0.2.0 | lib/rubygems/tasks/printing.rb |