activerecord-spatialite-adapter 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.rdoc +4 -0
- data/README.rdoc +3 -3
- data/Version +1 -1
- metadata +5 -23
data/History.rdoc
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
=== 0.3.1 / 2011-02-28
|
|
2
|
+
|
|
3
|
+
* Now requires rgeo-activerecord 0.3.1 (which brings a critical fix involving declaring multiple spatial columns in migration).
|
|
4
|
+
|
|
1
5
|
=== 0.3.0 / 2011-01-26
|
|
2
6
|
|
|
3
7
|
* Reworked type and constraint handling, which should result in a large number of bug fixes, especially related to schema dumps.
|
data/README.rdoc
CHANGED
|
@@ -38,7 +38,7 @@ format, which the adapter will automatically convert to geometry objects.
|
|
|
38
38
|
Spatial objects in RGeo are tied to a factory that specifies the
|
|
39
39
|
coordinate system as well as other behaviors of the object. You must
|
|
40
40
|
therefore specify a factory for each spatial column (attribute) in your
|
|
41
|
-
ActiveRecord class. You can either set an explicit factory for a specific
|
|
41
|
+
\ActiveRecord class. You can either set an explicit factory for a specific
|
|
42
42
|
column, or provide a factory generator that will yield the appropriate
|
|
43
43
|
factory for the table's spatial columns based on their types. For the
|
|
44
44
|
former, call the <tt>set_rgeo_factory_for_column</tt> class method on your
|
|
@@ -98,10 +98,10 @@ This adapter has the following requirements:
|
|
|
98
98
|
|
|
99
99
|
* Ruby 1.8.7 or later. Ruby 1.9.2 or later preferred.
|
|
100
100
|
* SpatiaLite 2.3 or later (2.4 recommended).
|
|
101
|
+
* sqlite3 gem 1.3.3 or later.
|
|
101
102
|
* \ActiveRecord 3.0.3 or later. Earlier versions will not work.
|
|
102
103
|
* rgeo gem 0.2.4 or later.
|
|
103
|
-
* rgeo-activerecord gem 0.3.
|
|
104
|
-
* sqlite3 gem 1.3.3 or later.
|
|
104
|
+
* rgeo-activerecord gem 0.3.1 or later.
|
|
105
105
|
|
|
106
106
|
Install this adapter as a gem:
|
|
107
107
|
|
data/Version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.1
|
metadata
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activerecord-spatialite-adapter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 3
|
|
8
|
-
- 0
|
|
9
|
-
version: 0.3.0
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.3.1
|
|
10
6
|
platform: ruby
|
|
11
7
|
authors:
|
|
12
8
|
- Daniel Azuma
|
|
@@ -14,7 +10,7 @@ autorequire:
|
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
12
|
|
|
17
|
-
date: 2011-
|
|
13
|
+
date: 2011-02-28 00:00:00 -08:00
|
|
18
14
|
default_executable:
|
|
19
15
|
dependencies:
|
|
20
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -25,11 +21,7 @@ dependencies:
|
|
|
25
21
|
requirements:
|
|
26
22
|
- - ~>
|
|
27
23
|
- !ruby/object:Gem::Version
|
|
28
|
-
|
|
29
|
-
- 0
|
|
30
|
-
- 3
|
|
31
|
-
- 0
|
|
32
|
-
version: 0.3.0
|
|
24
|
+
version: 0.3.1
|
|
33
25
|
type: :runtime
|
|
34
26
|
version_requirements: *id001
|
|
35
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -40,10 +32,6 @@ dependencies:
|
|
|
40
32
|
requirements:
|
|
41
33
|
- - ">="
|
|
42
34
|
- !ruby/object:Gem::Version
|
|
43
|
-
segments:
|
|
44
|
-
- 1
|
|
45
|
-
- 3
|
|
46
|
-
- 3
|
|
47
35
|
version: 1.3.3
|
|
48
36
|
type: :runtime
|
|
49
37
|
version_requirements: *id002
|
|
@@ -86,23 +74,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
86
74
|
requirements:
|
|
87
75
|
- - ">="
|
|
88
76
|
- !ruby/object:Gem::Version
|
|
89
|
-
segments:
|
|
90
|
-
- 1
|
|
91
|
-
- 8
|
|
92
|
-
- 7
|
|
93
77
|
version: 1.8.7
|
|
94
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
79
|
none: false
|
|
96
80
|
requirements:
|
|
97
81
|
- - ">="
|
|
98
82
|
- !ruby/object:Gem::Version
|
|
99
|
-
segments:
|
|
100
|
-
- 0
|
|
101
83
|
version: "0"
|
|
102
84
|
requirements: []
|
|
103
85
|
|
|
104
86
|
rubyforge_project: virtuoso
|
|
105
|
-
rubygems_version: 1.3
|
|
87
|
+
rubygems_version: 1.5.3
|
|
106
88
|
signing_key:
|
|
107
89
|
specification_version: 3
|
|
108
90
|
summary: An ActiveRecord adapter for SpatiaLite, based on RGeo.
|