PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/highline-2.1.0/lib/highline/
Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64
IP: 159.198.77.92
Choose File :

Url:
Dir : //opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/highline-2.1.0/lib/highline/string.rb

# coding: utf-8

require "highline/string_extensions"

class HighLine
  #
  # HighLine::String is a subclass of String with convenience methods added
  # for colorization.
  #
  # Available convenience methods include:
  #   * 'color' method         e.g.  highline_string.color(:bright_blue,
  #                                                        :underline)
  #   * colors                 e.g.  highline_string.magenta
  #   * RGB colors             e.g.  highline_string.rgb_ff6000
  #                             or   highline_string.rgb(255,96,0)
  #   * background colors      e.g.  highline_string.on_magenta
  #   * RGB background colors  e.g.  highline_string.on_rgb_ff6000
  #                             or   highline_string.on_rgb(255,96,0)
  #   * styles                 e.g.  highline_string.underline
  #
  # Additionally, convenience methods can be chained, for instance the
  # following are equivalent:
  #   highline_string.bright_blue.blink.underline
  #   highline_string.color(:bright_blue, :blink, :underline)
  #   HighLine.color(highline_string, :bright_blue, :blink, :underline)
  #
  # For those less squeamish about possible conflicts, the same convenience
  # methods can be added to the built-in String class, as follows:
  #
  #  require 'highline'
  #  Highline.colorize_strings
  #
  class String < ::String
    include StringExtensions
  end
end