Sha256: ef1fbf01ec4ae2610ce1c2a848933e1a0facbaecf90bd4e2f73fc0e2896e318d
Contents?: true
Size: 1.9 KB
Versions: 15
Compression:
Stored size: 1.9 KB
Contents
#!/usr/bin/env ruby # encoding: utf-8 # Spreadsheet::Encoding -- spreadheet -- 07.09.2011 -- mhatakeyama@ywesee.com # Spreadsheet::Encoding -- spreadheet -- 03.07.2009 -- hwyss@ywesee.com module Spreadsheet ## # Methods for Encoding-conversions. You should not need to use any of these. module Encodings if RUBY_VERSION >= '1.9' def client string, internal='UTF-16LE' string = string.dup string.force_encoding internal string.encode Spreadsheet.client_encoding end def internal string, client=Spreadsheet.client_encoding string = string.dup string.force_encoding client string.encode('UTF-16LE').force_encoding('ASCII-8BIT') end def utf8 string, client=Spreadsheet.client_encoding string = string.dup string.force_encoding client string.encode('UTF-8') end else require 'iconv' @@iconvs = {} def client string, internal='UTF-16LE' string = string.dup key = [Spreadsheet.client_encoding, internal] iconv = @@iconvs[key] ||= Iconv.new(Spreadsheet.client_encoding, internal) iconv.iconv string end def internal string, client=Spreadsheet.client_encoding string = string.dup key = ['UTF-16LE', client] iconv = @@iconvs[key] ||= Iconv.new('UTF-16LE', client) iconv.iconv string end def utf8 string, client=Spreadsheet.client_encoding string = string.dup key = ['UTF-8', client] iconv = @@iconvs[key] ||= Iconv.new('UTF-8', client) iconv.iconv string end end rescue LoadError warn "You don't have Iconv support compiled in your Ruby. Spreadsheet may not work as expected" def client string, internal='UTF-16LE' string.delete "\0" end def internal string, internal='UTF-16LE' string.split('').zip(Array.new(string.size, 0.chr)).join end end end
Version data entries
15 entries across 15 versions & 4 rubygems