freebsd-ports/devel/rubygem-term-ansicolor/pkg-descr
Sunpoet Po-Chuan Hsieh 2feb6b0dbf Update WWW
2017-07-15 17:22:48 +00:00

22 lines
548 B
Text

Small Ruby library that colors strings using ANSI escape sequences.
It's possible to use constants:
print red, bold, "red bold", reset, "\n"
or unary functions:
print red(bold("red bold")), "\n"
Blockforms do also autoreset at the block's end:
print red { bold { "red bold" } }, "\n"
It's also possible to use this module as Mixin for classes of objects that
respond to :to_str, e.g. String.
class String
include Term::ANSIColor
end
print "red bold".red.bold, "\n"
WWW: https://flori.github.io/term-ansicolor/