rgeo-activerecord 6.2.1 → 6.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77050c94aa6df54a1e28f3cd7f6972601db03f5e78c4370948fcba8d97b693c0
4
- data.tar.gz: a128490c6434f43f1dae669d62615afebba63d3a2a786f16efb215f4c387a2c2
3
+ metadata.gz: 0eaf7ecbe5d6d765688cd03ed0a6ce434f6b2eb7c3f8cf4f77e94cf87859e22c
4
+ data.tar.gz: b10e77caf7d99659469548766255177627db551fc522fa76c26d4a0a2f775e74
5
5
  SHA512:
6
- metadata.gz: f6e30c49ee52e95e4a588c7905e2debfe530661d263dc6313aa8fa90e12f469d48f4ba57bd90d779fa6985199cdff399d764a430b6edb16620a0bd508dd5b09e
7
- data.tar.gz: 22550bdceb948976faf107587922a96c5336a2bf680316a514be451fb30d348451f49981e005e70fc07769c369e5aa9f4e46a011e88235e28aa5c92d23b1c6f2
6
+ metadata.gz: bbec5edddc4e64e3d9587619bb6316a71651f37806ffdc0ff73fbd595003232e5ec6f783c73eba931f148687b9d07dc245d5437403b5eb5c3583fe0ae7684fdd
7
+ data.tar.gz: 1f487be6304b56fb804e6a97478093351d7a86586a14b94b6ca7c2ad1d2e9b6244767830e14f63a06dd4365c2b82b387759f1f311b939d907bf9c54a4ea1f7aa
data/History.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 6.2.2 / 2020-11-20
2
+
3
+ * Removed `Arel::Visitor::DepthFirst` for ActiveRecord 6.1 compatibility (kamipo)
4
+
1
5
  ### 6.2.1 / 2019-07-01
2
6
 
3
7
  * Include GeometryMixin in Cartesian modules (#52, andreasknoepfle)
@@ -86,11 +86,6 @@ module RGeo
86
86
  alias :visit_RGeo_Cartesian_BoundingBox :visit_String
87
87
  end
88
88
 
89
- Arel::Visitors::DepthFirst.class_eval do
90
- alias :visit_RGeo_Feature_Instance :terminal
91
- alias :visit_RGeo_Cartesian_BoundingBox :terminal
92
- end
93
-
94
89
  Arel::Visitors::ToSql.class_eval do
95
90
  alias :visit_RGeo_Feature_Instance :visit_String
96
91
  alias :visit_RGeo_Cartesian_BoundingBox :visit_String
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RGeo
4
4
  module ActiveRecord
5
- VERSION = "6.2.1"
5
+ VERSION = "6.2.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rgeo-activerecord
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.1
4
+ version: 6.2.2
5
5
  platform: ruby
6
6
  authors:
7
- - Daniel Azuma, Tee Parham
7
+ - Daniel Azuma
8
+ - Tee Parham
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2019-07-01 00:00:00.000000000 Z
12
+ date: 2020-12-11 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: activerecord
@@ -125,7 +126,10 @@ dependencies:
125
126
  description: RGeo is a geospatial data library for Ruby. RGeo::ActiveRecord is an
126
127
  optional RGeo module providing some spatial extensions to ActiveRecord, as well
127
128
  as common tools used by RGeo-based spatial adapters.
128
- email: dazuma@gmail.com, parhameter@gmail.com
129
+ email:
130
+ - dazuma@gmail.com
131
+ - parhameter@gmail.com
132
+ - kfdoggett@gmail.com
129
133
  executables: []
130
134
  extensions: []
131
135
  extra_rdoc_files: []
@@ -142,7 +146,8 @@ files:
142
146
  - lib/rgeo/active_record/spatial_factory_store.rb
143
147
  - lib/rgeo/active_record/version.rb
144
148
  homepage: https://github.com/rgeo/rgeo-activerecord
145
- licenses: []
149
+ licenses:
150
+ - BSD-3-Clause
146
151
  metadata: {}
147
152
  post_install_message:
148
153
  rdoc_options: []
@@ -159,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
164
  - !ruby/object:Gem::Version
160
165
  version: '0'
161
166
  requirements: []
162
- rubygems_version: 3.0.4
167
+ rubygems_version: 3.0.3
163
168
  signing_key:
164
169
  specification_version: 4
165
170
  summary: An RGeo module providing spatial extensions to ActiveRecord.