Classes: Converter
'0.0.1'
7 8 9
# File 'lib/ocho.rb', line 7 def encoding(text) Converter.new(text).encoding end
11 12 13 14
# File 'lib/ocho.rb', line 11 def read(filename) content = File.read(filename) Converter.new(content).to_utf8 end