class CrayonString

Public Instance Methods

clear(string) click to toggle source
# File lib/crayon/crayon_string.rb, line 4
def clear(string)
  CrayonString.new(self + string)
end
method_missing(method_name, string) click to toggle source
# File lib/crayon/crayon_string.rb, line 8
def method_missing(method_name, string)
  @method_name = method_name
  parse_method_name
  CrayonString.new(self + prepare_string(string))
end