Class: Fixnum
- Defined in:
- lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb
Overview
Enhance the Fixnum class with a XML escaped character conversion.
Constant Summary collapse
Instance Method Summary collapse
-
#xchr ⇒ Object
XML escaped version of chr.
Instance Method Details
#xchr ⇒ Object
XML escaped version of chr
93 94 95 96 97 98 99 100 |
# File 'lib/gems/activesupport-2.2.2/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 |