activerecord-mysqlspatial-adapter 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.rdoc +4 -0
- data/README.rdoc +3 -3
- data/Version +1 -1
- metadata +12 -7
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
@@ -40,7 +40,7 @@ format, which the adapter will automatically convert to geometry objects.
|
|
40
40
|
Spatial objects in RGeo are tied to a factory that specifies the
|
41
41
|
coordinate system as well as other behaviors of the object. You must
|
42
42
|
therefore specify a factory for each spatial column (attribute) in your
|
43
|
-
ActiveRecord class. You can either set an explicit factory for a specific
|
43
|
+
\ActiveRecord class. You can either set an explicit factory for a specific
|
44
44
|
column, or provide a factory generator that will yield the appropriate
|
45
45
|
factory for the table's spatial columns based on their types. For the
|
46
46
|
former, call the <tt>set_rgeo_factory_for_column</tt> class method on your
|
@@ -101,9 +101,9 @@ This adapter has the following requirements:
|
|
101
101
|
* Ruby 1.8.7 or later. Ruby 1.9.2 or later preferred.
|
102
102
|
* MySQL server 5.0 or later required for spatial extensions.
|
103
103
|
* \ActiveRecord 3.0.3 or later. Earlier versions will not work.
|
104
|
-
* rgeo gem 0.2.4 or later.
|
105
|
-
* rgeo-activerecord gem 0.3.0 or later.
|
106
104
|
* mysql gem 2.8 or later.
|
105
|
+
* rgeo gem 0.2.4 or later.
|
106
|
+
* rgeo-activerecord gem 0.3.1 or later.
|
107
107
|
|
108
108
|
Install this adapter as a gem:
|
109
109
|
|
data/Version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-mysqlspatial-adapter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 17
|
5
|
+
prerelease:
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
9
|
+
- 1
|
10
|
+
version: 0.3.1
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Daniel Azuma
|
@@ -14,7 +15,7 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2011-
|
18
|
+
date: 2011-02-28 00:00:00 -08:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
@@ -25,11 +26,12 @@ dependencies:
|
|
25
26
|
requirements:
|
26
27
|
- - ~>
|
27
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 17
|
28
30
|
segments:
|
29
31
|
- 0
|
30
32
|
- 3
|
31
|
-
-
|
32
|
-
version: 0.3.
|
33
|
+
- 1
|
34
|
+
version: 0.3.1
|
33
35
|
type: :runtime
|
34
36
|
version_requirements: *id001
|
35
37
|
- !ruby/object:Gem::Dependency
|
@@ -40,6 +42,7 @@ dependencies:
|
|
40
42
|
requirements:
|
41
43
|
- - ">="
|
42
44
|
- !ruby/object:Gem::Version
|
45
|
+
hash: 45
|
43
46
|
segments:
|
44
47
|
- 2
|
45
48
|
- 8
|
@@ -81,6 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
84
|
requirements:
|
82
85
|
- - ">="
|
83
86
|
- !ruby/object:Gem::Version
|
87
|
+
hash: 57
|
84
88
|
segments:
|
85
89
|
- 1
|
86
90
|
- 8
|
@@ -91,13 +95,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
95
|
requirements:
|
92
96
|
- - ">="
|
93
97
|
- !ruby/object:Gem::Version
|
98
|
+
hash: 3
|
94
99
|
segments:
|
95
100
|
- 0
|
96
101
|
version: "0"
|
97
102
|
requirements: []
|
98
103
|
|
99
104
|
rubyforge_project: virtuoso
|
100
|
-
rubygems_version: 1.3
|
105
|
+
rubygems_version: 1.5.3
|
101
106
|
signing_key:
|
102
107
|
specification_version: 3
|
103
108
|
summary: An ActiveRecord adapter for MySQL Spatial Extensions, based on RGeo and the mysql gem.
|