Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/xmltv/xmltv.rb

Constant Summary collapse

UTF =
'utf-8'
ISO =
'iso-8859-15'
TO_UTF =
Iconv.new(UTF, ISO)
CK_UTF =
Iconv.new(UTF, UTF)

Instance Method Summary collapse

Instance Method Details

#ck_utfObject



48
49
50
# File 'lib/xmltv/xmltv.rb', line 48

def ck_utf
  CK_UTF.iconv(self)
end

#to_utfObject



45
46
47
# File 'lib/xmltv/xmltv.rb', line 45

def to_utf
  TO_UTF.iconv(self)
end