rgeo 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.rdoc +4 -0
  2. data/README.rdoc +1 -1
  3. data/Version +1 -1
  4. metadata +27 -29
data/History.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.2.8 / 2011-04-11
2
+
3
+ * A .gemspec file is now available for gem building and bundler git integration.
4
+
1
5
  === 0.2.7 / 2011-04-09
2
6
 
3
7
  * POSSIBLE INCOMPATIBLE CHANGE: GeometryCollection#geometry_n, Polygon#interior_ring_n, and LineString#point_n, in some implementations, allowed negative indexes (which counted backwards from the end of the collection as per Ruby arrays.) This was against the SFS interface, and so the behavior has been removed. However, GeometryCollection#[], because it is supposed to model Ruby arrays, now explicitly DOES allow negative indexes. This means GeometryCollection#[] is no longer exactly the same as GeometryCollection#geometry_n. These clarifications have also been made in the RDoc.
data/README.rdoc CHANGED
@@ -130,7 +130,7 @@ Geospatial Foundation; more information is available on OSGeo's web site
130
130
 
131
131
  === License
132
132
 
133
- Copyright 2011 Daniel Azuma
133
+ Copyright 2010-2011 Daniel Azuma
134
134
 
135
135
  All rights reserved.
136
136
 
data/Version CHANGED
@@ -1 +1 @@
1
- 0.2.7
1
+ 0.2.8
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rgeo
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.7
5
+ version: 0.2.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Azuma
@@ -10,11 +10,10 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-09 00:00:00 -07:00
14
- default_executable:
13
+ date: 2011-04-11 00:00:00 Z
15
14
  dependencies: []
16
15
 
17
- description: RGeo is a spatial data library for Ruby. It provides an implementation of the Open Geospatial Consortium's Simple Features Specification, used by most standard spatial/geographic data storage systems such as PostGIS. A number of add-on modules are also available to help with writing location-based applications using Ruby-based frameworks such as Ruby On Rails.
16
+ description: RGeo is a geospatial data library for Ruby. It provides an implementation of the Open Geospatial Consortium's Simple Features Specification, used by most standard spatial/geographic data storage systems such as PostGIS. A number of add-on modules are also available to help with writing location-based applications using Ruby-based frameworks such as Ruby On Rails.
18
17
  email: dazuma@gmail.com
19
18
  executables: []
20
19
 
@@ -94,9 +93,23 @@ files:
94
93
  - lib/rgeo/wkrep/wkt_parser.rb
95
94
  - lib/rgeo/wkrep.rb
96
95
  - lib/rgeo.rb
97
- - History.rdoc
98
- - README.rdoc
99
- - Spatial_Programming_With_RGeo.rdoc
96
+ - ext/geos_c_impl/extconf.rb
97
+ - ext/proj4_c_impl/extconf.rb
98
+ - ext/geos_c_impl/factory.c
99
+ - ext/geos_c_impl/geometry.c
100
+ - ext/geos_c_impl/geometry_collection.c
101
+ - ext/geos_c_impl/line_string.c
102
+ - ext/geos_c_impl/main.c
103
+ - ext/geos_c_impl/point.c
104
+ - ext/geos_c_impl/polygon.c
105
+ - ext/proj4_c_impl/main.c
106
+ - ext/geos_c_impl/factory.h
107
+ - ext/geos_c_impl/geometry.h
108
+ - ext/geos_c_impl/geometry_collection.h
109
+ - ext/geos_c_impl/line_string.h
110
+ - ext/geos_c_impl/point.h
111
+ - ext/geos_c_impl/polygon.h
112
+ - ext/geos_c_impl/preface.h
100
113
  - test/common/geometry_collection_tests.rb
101
114
  - test/common/line_string_tests.rb
102
115
  - test/common/multi_line_string_tests.rb
@@ -157,25 +170,10 @@ files:
157
170
  - test/wkrep/tc_wkb_parser.rb
158
171
  - test/wkrep/tc_wkt_generator.rb
159
172
  - test/wkrep/tc_wkt_parser.rb
160
- - ext/geos_c_impl/extconf.rb
161
- - ext/proj4_c_impl/extconf.rb
162
- - ext/geos_c_impl/factory.c
163
- - ext/geos_c_impl/geometry.c
164
- - ext/geos_c_impl/geometry_collection.c
165
- - ext/geos_c_impl/line_string.c
166
- - ext/geos_c_impl/main.c
167
- - ext/geos_c_impl/point.c
168
- - ext/geos_c_impl/polygon.c
169
- - ext/proj4_c_impl/main.c
170
- - ext/geos_c_impl/factory.h
171
- - ext/geos_c_impl/geometry.h
172
- - ext/geos_c_impl/geometry_collection.h
173
- - ext/geos_c_impl/line_string.h
174
- - ext/geos_c_impl/point.h
175
- - ext/geos_c_impl/polygon.h
176
- - ext/geos_c_impl/preface.h
173
+ - History.rdoc
174
+ - README.rdoc
175
+ - Spatial_Programming_With_RGeo.rdoc
177
176
  - Version
178
- has_rdoc: true
179
177
  homepage: http://virtuoso.rubyforge.org/rgeo
180
178
  licenses: []
181
179
 
@@ -193,16 +191,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
193
191
  required_rubygems_version: !ruby/object:Gem::Requirement
194
192
  none: false
195
193
  requirements:
196
- - - ">="
194
+ - - ">"
197
195
  - !ruby/object:Gem::Version
198
- version: "0"
196
+ version: 1.3.1
199
197
  requirements: []
200
198
 
201
199
  rubyforge_project: virtuoso
202
- rubygems_version: 1.6.2
200
+ rubygems_version: 1.7.2
203
201
  signing_key:
204
202
  specification_version: 3
205
- summary: RGeo is a spatial data library for Ruby.
203
+ summary: RGeo is a geospatial data library for Ruby.
206
204
  test_files:
207
205
  - test/coord_sys/tc_active_record_table.rb
208
206
  - test/coord_sys/tc_ogc_cs.rb