geocoder 1.6.6 → 1.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -2
- data/README.md +318 -206
- data/lib/generators/geocoder/config/templates/initializer.rb +7 -1
- data/lib/geocoder/cache.rb +12 -33
- data/lib/geocoder/cache_stores/base.rb +40 -0
- data/lib/geocoder/cache_stores/generic.rb +35 -0
- data/lib/geocoder/cache_stores/redis.rb +34 -0
- data/lib/geocoder/configuration.rb +7 -2
- data/lib/geocoder/ip_address.rb +6 -0
- data/lib/geocoder/lookup.rb +16 -2
- data/lib/geocoder/lookups/abstract_api.rb +46 -0
- data/lib/geocoder/lookups/amazon_location_service.rb +54 -0
- data/lib/geocoder/lookups/base.rb +8 -2
- data/lib/geocoder/lookups/bing.rb +1 -1
- data/lib/geocoder/lookups/geoapify.rb +72 -0
- data/lib/geocoder/lookups/geoip2.rb +4 -0
- data/lib/geocoder/lookups/ip2location.rb +10 -6
- data/lib/geocoder/lookups/ipdata_co.rb +1 -1
- data/lib/geocoder/lookups/ipqualityscore.rb +50 -0
- data/lib/geocoder/lookups/melissa_street.rb +41 -0
- data/lib/geocoder/lookups/photon.rb +89 -0
- data/lib/geocoder/lookups/uk_ordnance_survey_names.rb +1 -1
- data/lib/geocoder/results/abstract_api.rb +146 -0
- data/lib/geocoder/results/amazon_location_service.rb +57 -0
- data/lib/geocoder/results/esri.rb +5 -2
- data/lib/geocoder/results/geoapify.rb +179 -0
- data/lib/geocoder/results/ipqualityscore.rb +54 -0
- data/lib/geocoder/results/mapbox.rb +10 -4
- data/lib/geocoder/results/melissa_street.rb +46 -0
- data/lib/geocoder/results/photon.rb +119 -0
- data/lib/geocoder/version.rb +1 -1
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dd61064f277184f4cd323f881e949513dbd29707f9b5975e1da0ef6717536a1
|
4
|
+
data.tar.gz: efc08471c7d346d9355e3cd19483aa8a46acd83216678023da6b3b9535844d9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a9517555ad1f9ba13f401ffda9dc2b2b011af207520c062c048f78d0dbdbc44bf1a8a5293237a41a640f45ba065ead82e666c738b828a78756d1e9dd93a9a0c
|
7
|
+
data.tar.gz: ee14868f649772f74293aa27f84f6355bafdfe7e71429bf5624ac32998d189e01acb09d3931fe36c43c9e7c5c8df494d71364fa0ec6c8f51d19f87780b394684
|
data/CHANGELOG.md
CHANGED
@@ -3,11 +3,31 @@ Changelog
|
|
3
3
|
|
4
4
|
Major changes to Geocoder for each release. Please see the Git log for complete list of changes.
|
5
5
|
|
6
|
-
1.
|
6
|
+
1.7.2 (2022 Jan 2)
|
7
|
+
-------------------
|
8
|
+
* Fix uninitialized constant error (occurring on some systems with v1.7.1).
|
9
|
+
|
10
|
+
1.7.1 (2022 Jan 1)
|
11
|
+
-------------------
|
12
|
+
* Various bugfixes and refactorings.
|
13
|
+
|
14
|
+
1.7.0 (2021 Oct 11)
|
15
|
+
-------------------
|
16
|
+
* Add support for Geoapify and Photo lookups (thanks github.com/ahukkanen).
|
17
|
+
* Add support for IPQualityScore IP lookup (thanks github.com/jamesbebbington).
|
18
|
+
* Add support for Amazon Location Service lookup (thanks github.com/mplewis).
|
19
|
+
* Add support for Melissa lookup (thanks github.com/ALacker).
|
20
|
+
* Drop official support for Ruby 2.0.x and Rails 4.x.
|
21
|
+
|
22
|
+
1.6.7 (2021 Apr 17)
|
23
|
+
-------------------
|
24
|
+
* Add support for Abstract API lookup (thanks github.com/randoum).
|
25
|
+
|
26
|
+
1.6.6 (2021 Mar 4)
|
7
27
|
-------------------
|
8
28
|
* Rescue from exception on cache read/write error. Issue warning instead.
|
9
29
|
|
10
|
-
1.6.5 (
|
30
|
+
1.6.5 (2021 Feb 10)
|
11
31
|
-------------------
|
12
32
|
* Fix backward coordinates bug in NationaalregisterNl lookup (thanks github.com/Marthyn).
|
13
33
|
* Allow removal of single stubs in test mode (thanks github.com/jmmastey).
|