Parent

Methods

Class/Module Index [+]

Quicksearch

Fixnum

Enhance the Fixnum class with a XML escaped character conversion.

Constants

XChar

Public Instance Methods

html_safe?() click to toggle source
# File lib/active_support/core_ext/string/output_safety.rb, line 58
def html_safe?
  true
end
xchr() click to toggle source

XML escaped version of chr

# File lib/active_support/vendor/builder-2.1.2/builder/xchar.rb, line 93
def xchr
  n = XChar::CP1252[self] || self
  case n when *XChar::VALID
    XChar::PREDEFINED[n] or (n<128 ? n.chr : "&##{n};")
  else
    '*'
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.