summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/Shift-JIS.rb
blob: e805456ea76481707959f7220bf60c47b15f097c (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
begin
	require 'uconv'

	module REXML
		module Encoding
			def from_shift_jis(str)
				Uconv::u8tosjis(content)
			end

			def to_shift_jis content
				Uconv::sjistou8(str)
			end
		end
	end
rescue LoadError
  begin
	require 'iconv'
	module REXML
		module Encoding
			def from_shift_jis(str)
				return Iconv::iconv("utf-8", "shift-jis", str)[0]
			end

			def to_shift_jis content
				return Iconv::iconv("euc-jp", "shift-jis", content)[0]
			end
		end
	end
  rescue LoadError
	raise "uconv or iconv is required for Japanese encoding support."
  end
end