In Files

  • rexml/output.rb

Parent

Methods

Included Modules

Class/Module Index [+]

Quicksearch

REXML::Output

Attributes

encoding[R]

Public Class Methods

new(real_IO, encd="iso-8859-1") click to toggle source
 
               # File rexml/output.rb, line 9
def initialize real_IO, encd="iso-8859-1"
  @output = real_IO
  self.encoding = encd

  @to_utf = encd == UTF_8 ? false : true
end
            

Public Instance Methods

<<( content ) click to toggle source
 
               # File rexml/output.rb, line 16
def <<( content )
  @output << (@to_utf ? self.encode(content) : content)
end
            
to_s() click to toggle source
 
               # File rexml/output.rb, line 20
def to_s
  "Output[#{encoding}]"
end