class Undies::Raw

Public Instance Methods

gsub(*args) click to toggle source

A Raw string is one that is impervious to String#gsub and returns itself when `to_s` is called. Used to circumvent the default html escaping of markup

# File lib/undies/raw.rb, line 9
def gsub(*args);  self; end
gsub!(*args) click to toggle source
# File lib/undies/raw.rb, line 10
def gsub!(*args); nil;  end
to_s() click to toggle source
# File lib/undies/raw.rb, line 11
def to_s;         self; end