class Erector::RawString

A string that has a special type so Erector knows to render it directly, not HTML-escaped

Public Instance Methods

html_safe?() click to toggle source
# File lib/erector/raw_string.rb, line 4
def html_safe?
  true
end
to_s() click to toggle source
# File lib/erector/raw_string.rb, line 8
def to_s
  self
end