class GeoRuby::Shp4r::Dbf::Field::FauxTable
Shim class to address backward compatibility issues with DBF >= 2.0.13
Previous signature was (name, type, length, decimal, version, encoding) v2.0.13 and later signature is (table, name, type, length, decimal) with table expected to provide version and encoding
Attributes
encoding[R]
version[R]
Public Class Methods
new(version, encoding)
click to toggle source
# File lib/geo_ruby/shp4r/dbf.rb, line 35 def initialize(version, encoding) @version, @encoding = version, encoding end