geocoder 1.6.4 → 1.7.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/LICENSE +1 -1
- data/README.md +318 -230
- data/lib/geocoder/cache.rb +9 -1
- data/lib/geocoder/configuration.rb +1 -0
- 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 +53 -0
- 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/ipqualityscore.rb +50 -0
- data/lib/geocoder/lookups/maxmind_local.rb +7 -1
- data/lib/geocoder/lookups/melissa_street.rb +41 -0
- data/lib/geocoder/lookups/photon.rb +89 -0
- data/lib/geocoder/lookups/test.rb +4 -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/ban_data_gouv_fr.rb +26 -1
- 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/ipregistry.rb +4 -8
- data/lib/geocoder/results/mapbox.rb +10 -4
- data/lib/geocoder/results/melissa_street.rb +46 -0
- data/lib/geocoder/results/nationaal_georegister_nl.rb +1 -1
- data/lib/geocoder/results/photon.rb +119 -0
- data/lib/geocoder/version.rb +1 -1
- metadata +14 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86304e3364377f7c93cc2a91dba1235316b63469ee1c09261b0763db052bcded
|
4
|
+
data.tar.gz: ab4d2167f60e9149bb052e98bf11df40f7b68a0f75873d7c95e638e7c84acda2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d8a017acef8c3c15e48c641311b38363f28d7900047fc5bf371d669dcd083401736b30de9ccc859290234a1d44308694de338bddca4cd2706df35fe2c060dbe
|
7
|
+
data.tar.gz: 372826b2a2ac13ed235eb7a78c9fdb4b214d54e28672a9ff24ae88f16ef9f4d07c867d6d09f0e90cd6e7e0e9adea975a9932356a2238a9a0eb15f987ee5d4c69
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,28 @@ 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.7.0 (2021 Oct 11)
|
7
|
+
-------------------
|
8
|
+
* Add support for Geoapify and Photo lookups (thanks github.com/ahukkanen).
|
9
|
+
* Add support for IPQualityScore IP lookup (thanks github.com/jamesbebbington).
|
10
|
+
* Add support for Amazon Location Service lookup (thanks github.com/mplewis).
|
11
|
+
* Add support for Melissa lookup (thanks github.com/ALacker).
|
12
|
+
* Drop official support for Ruby 2.0.x and Rails 4.x.
|
13
|
+
|
14
|
+
1.6.7 (2021 Apr 17)
|
15
|
+
-------------------
|
16
|
+
* Add support for Abstract API lookup (thanks github.com/randoum).
|
17
|
+
|
18
|
+
1.6.6 (2021 Mar 4)
|
19
|
+
-------------------
|
20
|
+
* Rescue from exception on cache read/write error. Issue warning instead.
|
21
|
+
|
22
|
+
1.6.5 (2021 Feb 10)
|
23
|
+
-------------------
|
24
|
+
* Fix backward coordinates bug in NationaalregisterNl lookup (thanks github.com/Marthyn).
|
25
|
+
* Allow removal of single stubs in test mode (thanks github.com/jmmastey).
|
26
|
+
* Improve results for :ban_data_gouv_fr lookup (thanks github.com/Intrepidd).
|
27
|
+
|
6
28
|
1.6.4 (2020 Oct 6)
|
7
29
|
-------------------
|
8
30
|
* Various updates in response to geocoding API changes.
|
data/LICENSE
CHANGED