Sha256: 893b10b92a4bb96689ee9b3377daaab42c5b40181236ca2c826b2fb72209bcfe
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
require 'iconv' if RUBY_VERSION >= '1.9' # for an excellent explanation see http://blog.segment7.net/2010/12/17/from-iconv-iconv-to-string-encode Kernel.warn "[remote_table] Apologies - using iconv because Ruby 1.9.x's String#encode doesn't have transliteration tables (yet)" end require 'remote_table/format/mixins/textual' require 'remote_table/format/mixins/processed_by_roo' require 'remote_table/format/mixins/processed_by_nokogiri' require 'remote_table/format/excel' require 'remote_table/format/excelx' require 'remote_table/format/delimited' require 'remote_table/format/open_office' require 'remote_table/format/fixed_width' require 'remote_table/format/html' require 'remote_table/format/xml' require 'remote_table/format/yaml' class RemoteTable class Format attr_reader :t def initialize(t) @t = t end def transliterate_to_utf8(str) if str.is_a?(::String) [ iconv.iconv(str), iconv.iconv(nil) ].join end end def assume_utf8(str) if str.is_a?(::String) and ::RUBY_VERSION >= '1.9' str.encode! t.config.external_encoding else str end end private def iconv @iconv ||= ::Iconv.new(t.config.external_encoding_iconv, t.config.internal_encoding) end include ::Enumerable end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
remote_table-1.4.0 | lib/remote_table/format.rb |