activerecord-postgis-adapter 9.0.1 → 9.0.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: 1431c8f09469d4559144c63ce0d279428e605dee782e1f124bdcb548a43e2453
4
- data.tar.gz: 1d881e51d00762d2386f6caffd034574f8520f8b0f555657bf84fd2bc42b1137
3
+ metadata.gz: 75f6e9775eb5ed72bf5afd83bb6c987da46b6ac05db7ea61e8930565010b5874
4
+ data.tar.gz: f656e5b00c0920b2b8a2373de6501a048991498a6592338ca73d4a2e7d73df04
5
5
  SHA512:
6
- metadata.gz: 98a82b579c6e9cd7dd67d078eff97b0a107fd9375a5eb849178d9d78e06646a776f92995606fdc63920f4e49482a57fc8c101e72df667770939f3a964ef0152f
7
- data.tar.gz: 5b81ac852c3a60f27985083125a26a375ee5d76c5b26c56c4cfa1d9284bb8449664822bb24ab575d56dc8851dc740034b8f6e95535884176709c9dd15099df4b
6
+ metadata.gz: 489c286442008acd662c8b8c3cbeae6351e76b65547bb5559f7697eeccf30f910b635cff3884981499abfdb7bb028a740a1ff987e85d68adb635ff3b49920c73
7
+ data.tar.gz: 0a5122a68aa81d656822b04327848350c99529eb7f811d116a9bfb9a31b90b0028fe33ad80961acbc2429a5a84e9dd704df3a081c05f495564cd250dc70d2156
@@ -3,7 +3,7 @@
3
3
  module ActiveRecord
4
4
  module ConnectionAdapters
5
5
  module PostGIS
6
- VERSION = "9.0.1"
6
+ VERSION = "9.0.2"
7
7
  end
8
8
  end
9
9
  end
@@ -24,6 +24,16 @@ require_relative "postgis/create_connection"
24
24
  # :startdoc:
25
25
 
26
26
  module ActiveRecord
27
+ module ConnectionHandling # :nodoc:
28
+ def postgis_adapter_class
29
+ ConnectionAdapters::PostGISAdapter
30
+ end
31
+
32
+ def postgis_connection(config)
33
+ postgis_adapter_class.new(config)
34
+ end
35
+ end
36
+
27
37
  module ConnectionAdapters
28
38
  class PostGISAdapter < PostgreSQLAdapter
29
39
  ADAPTER_NAME = 'PostGIS'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-postgis-adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.1
4
+ version: 9.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-10-16 00:00:00.000000000 Z
12
+ date: 2024-04-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
155
  - !ruby/object:Gem::Version
156
156
  version: '0'
157
157
  requirements: []
158
- rubygems_version: 3.2.33
158
+ rubygems_version: 3.3.26
159
159
  signing_key:
160
160
  specification_version: 4
161
161
  summary: ActiveRecord adapter for PostGIS, based on RGeo.