Current Path :
/
opt
/
alt
/
ruby18
/
lib64
/
ruby
/
1.8
/
rexml
/
encodings
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//opt/alt/ruby18/lib64/ruby/1.8/rexml/encodings/UTF-8.rb
module REXML module Encoding def encode_utf8 content content end def decode_utf8(str) str end register(UTF_8) do |obj| class << obj alias decode decode_utf8 alias encode encode_utf8 end end end end