Class
Attributes
Read
No documentation available
Class Methods
lib/rexml/output.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rexml/output.rb, line 10
def initialize real_IO, encd="iso-8859-1"
@output = real_IO
self.encoding = encd
@to_utf = encoding != 'UTF-8'
if encoding == "UTF-16"
@output << "\ufeff".encode("UTF-16BE")
self.encoding = "UTF-16BE"
end
end
No documentation available
Instance Methods
lib/rexml/output.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rexml/output.rb, line 22
def <<( content )
@output << (@to_utf ? self.encode(content) : content)
end
No documentation available
#
lib/rexml/output.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rexml/output.rb, line 26
def to_s
"Output[#{encoding}]"
end
No documentation available