Sha256: 938dfa0ddcffa986536f58a59081d088de1294c83dc68cfaea746ca77b02cb94
Contents?: true
Size: 674 Bytes
Versions: 2
Compression:
Stored size: 674 Bytes
Contents
module Nanoc::CLI # A simple ANSI colorizer for strings. When given a string and a list of # attributes, it returns a colorized string. # # @api private module ANSIStringColorizer # TODO: complete mapping MAPPING = { bold: "\e[1m", red: "\e[31m", green: "\e[32m", yellow: "\e[33m", blue: "\e[34m" } # @param [String] s The string to colorize # # @param [Array] as An array of attributes from `MAPPING` to colorize the # string with # # @return [String] A string colorized using the given attributes def self.c(s, *as) as.map { |a| MAPPING[a] }.join('') + s + "\e[0m" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nanoc-4.0.0b4 | lib/nanoc/cli/ansi_string_colorizer.rb |
nanoc-4.0.0b3 | lib/nanoc/cli/ansi_string_colorizer.rb |