summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/EUC-JP.rb
blob: a1314d085677309e52d881c5231d7181877c2860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
begin
  require 'iconv'

  module REXML
    module Encoding
      @@__REXML_encoding_methods =<<-EOL
      def decode(str)
        return Iconv::iconv("utf-8", "euc-jp", str)[0]
      end

      def encode content
        return Iconv::iconv("euc-jp", "utf-8", content)[0]
      end
      EOL
    end
  end
rescue LoadError
  begin
    require 'uconv'

    module REXML
      module Encoding
        @@__REXML_encoding_methods =<<-EOL
        def decode(str)
          return Uconv::euctou8(str)
        end

        def encode content
          return Uconv::u8toeuc(content)
        end
        EOL
      end
    end
  rescue LoadError
		raise "uconv or iconv is required for Japanese encoding support."
  end
end