summaryrefslogtreecommitdiff
path: root/lib/highline/string.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/highline/string.rb')
-rw-r--r--lib/highline/string.rb17
1 files changed, 9 insertions, 8 deletions
diff --git a/lib/highline/string.rb b/lib/highline/string.rb
index 162cfeb..8d2e0a6 100644
--- a/lib/highline/string.rb
+++ b/lib/highline/string.rb
@@ -3,12 +3,13 @@
require "highline/string_extensions"
class HighLine
-
#
- # HighLine::String is a subclass of String with convenience methods added for colorization.
+ # 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)
+ # * '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)
@@ -17,19 +18,19 @@ class HighLine
# 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:
+ # 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:
+ # 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 \ No newline at end of file
+end