Sha256: df58fa9e3421811a9552edb328cad9a47bb130c670d00ec15bae54fe912d4fc4
Contents?: true
Size: 1.03 KB
Versions: 6519
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require 'rainbow' module Rainbow module Ext module String module InstanceMethods def foreground(*color) Rainbow(self).foreground(*color) end alias color foreground alias colour foreground def background(*color) Rainbow(self).background(*color) end def reset Rainbow(self).reset end def bright Rainbow(self).bright end def faint Rainbow(self).faint end def italic Rainbow(self).italic end def underline Rainbow(self).underline end def blink Rainbow(self).blink end def inverse Rainbow(self).inverse end def hide Rainbow(self).hide end def cross_out Rainbow(self).cross_out end alias strike cross_out end end end end class String include Rainbow::Ext::String::InstanceMethods end
Version data entries
6,519 entries across 6,519 versions & 34 rubygems