graticule 2.7.0 → 2.7.1
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.txt +1 -1
- data/lib/graticule/geocoder/google.rb +2 -2
- data/lib/graticule/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a37950bb0bcb2d4e96425a812b8617b903b6890
|
|
4
|
+
data.tar.gz: eb7eb072e7c8be7d06c28eb51e3e017887a95732
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a04611f7d51fb82488a1ef04424ba398fb27440eed261c3cf7c13a4048968d2d1a64d32e2abe0843c2028a87b018b4e157d95b99b14d73ad60363a4b70659632
|
|
7
|
+
data.tar.gz: 2415ff14c8425352f9fb272574f4f6638682fbfb3d03ecd776477d96a95dcfcaf5e83bd76fdf223f2bd0e3d036f8c1cca30d527e34f397a7df9e1fcf661fab9e
|
data/CHANGELOG.txt
CHANGED
|
@@ -45,7 +45,7 @@ module Graticule #:nodoc:
|
|
|
45
45
|
when "route"
|
|
46
46
|
@route = component["short_name"]
|
|
47
47
|
when "locality", "sublocality"
|
|
48
|
-
@locality = component["long_name"]
|
|
48
|
+
@locality = component["long_name"]
|
|
49
49
|
when "administrative_area_level_1"
|
|
50
50
|
@region = component["short_name"]
|
|
51
51
|
when "country"
|
|
@@ -139,7 +139,7 @@ module Graticule #:nodoc:
|
|
|
139
139
|
# the url as required by v3 of the library:
|
|
140
140
|
#
|
|
141
141
|
# https://developers.google.com/maps/documentation/business/webservices#digital_signatures
|
|
142
|
-
#
|
|
142
|
+
#
|
|
143
143
|
def make_url(params) #:nodoc:
|
|
144
144
|
if @key && @client_id
|
|
145
145
|
url = super params.merge(:sensor => false, :client => @client_id)
|
data/lib/graticule/version.rb
CHANGED