lib/postgis_adapter.rb in nofxx-postgis_adapter-0.3.3 vs lib/postgis_adapter.rb in nofxx-postgis_adapter-0.3.4

- old
+ new

@@ -17,11 +17,11 @@ include GeoRuby::SimpleFeatures include SpatialAdapter module PostgisAdapter - VERSION = '0.3.3' + VERSION = '0.3.4' end #tables to ignore in migration : relative to PostGIS management of geometric columns ActiveRecord::SchemaDumper.ignore_tables << "spatial_ref_sys" << "geometry_columns" @@ -382,13 +382,9 @@ GeoRuby::SimpleFeatures::Geometry.from_hex_ewkb(string) rescue nil end def self.create_simplified(name,default,null = true) new(name,default,"geometry",null,nil,nil,nil) - end - - def as_kml - end end end end