Sha256: ac1376a818923c25072fbfd761560ad6d391b48b13a5b4f43d4e14ea41f5bfda
Contents?: true
Size: 1021 Bytes
Versions: 1
Compression:
Stored size: 1021 Bytes
Contents
if ::RUBY_VERSION >= '1.9' require 'ensure/encoding' else require 'iconv' end class RemoteTable class Format autoload :Excel, 'remote_table/format/excel' autoload :Excelx, 'remote_table/format/excelx' autoload :Delimited, 'remote_table/format/delimited' autoload :OpenOffice, 'remote_table/format/open_office' autoload :FixedWidth, 'remote_table/format/fixed_width' autoload :HTML, 'remote_table/format/html' autoload :Textual, 'remote_table/format/mixins/textual' autoload :Rooable, 'remote_table/format/mixins/rooable' attr_reader :t def initialize(t) @t = t end def utf8(str) if ::RUBY_VERSION >= '1.9' str.ensure_encoding 'UTF-8', :external_encoding => t.properties.encoding, :invalid_characters => :transcode else ::Iconv.conv('UTF-8//TRANSLIT', t.properties.encoding[0], str + ' ')[0..-2] end end include ::Enumerable def each raise "must be defined by format" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
remote_table-1.1.10 | lib/remote_table/format.rb |