Class REXML::Output
In:
Parent: Object

Methods

<<   new   to_s  

Included Modules

Attributes

encoding  [R] 

Public Class methods

[Source]

 9:                 def initialize real_IO, encd="iso-8859-1"
10:                         @output = real_IO
11:                         self.encoding = encd
12: 
13:                         @to_utf = encd == UTF_8 ? false : true
14:                 end

Public Instance methods

[Source]

16:                 def <<( content )
17:                         @output << (@to_utf ? self.encode(content) : content)
18:                 end

[Source]

20:     def to_s
21:       "Output[#{encoding}]"
22:     end

Search

Google

Ruby API Docs

Links