sora_geocoding 0.2.0 → 0.2.2
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 +8 -0
- data/Gemfile.lock +1 -1
- data/lib/sora_geocoding/geohash.rb +2 -2
- data/lib/sora_geocoding/version.rb +1 -1
- data/sora_geocoding.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac754f05e62848dd07220595fb8a0b3a3e27a7788d62529a495d35a70cd9a7e5
|
|
4
|
+
data.tar.gz: f77ca9c3f89d85ca993362640f4c850ee996cec7d5f04896dc0306bd83c2b617
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68b9a5de3d1bd3c6745049f8e36b53c73c9119141ef26fc831a38d634b87de9ece1008b059ee85eaa262e29d809a344eedac26e4aa8b0b04c598751e4e18e65d
|
|
7
|
+
data.tar.gz: 36f94674137c27b1d3e640b30d9529cc00aca71585c71732fc8a27e98721109659152709221ec26f58599bbfd6d62e476adcde04f9674d4ca5aa80a91ac642ef
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
0.2.2 (2020 Aug 15)
|
|
5
|
+
------------------
|
|
6
|
+
- Converting latitude and longitude to a string for use in Geohash initialization.
|
|
7
|
+
|
|
8
|
+
0.2.0 (2020 Aug 15)
|
|
9
|
+
------------------
|
|
10
|
+
- Added geohash method.
|
|
11
|
+
|
|
4
12
|
0.1.0 (2020 Aug 5)
|
|
5
13
|
------------------
|
|
6
14
|
First release.
|
data/Gemfile.lock
CHANGED
data/sora_geocoding.gemspec
CHANGED
|
@@ -16,8 +16,8 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.license = 'MIT'
|
|
17
17
|
|
|
18
18
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
19
|
-
spec.metadata['source_code_uri'] = 'https://github.com/
|
|
20
|
-
spec.metadata['changelog_uri'] = 'https://github.com/
|
|
19
|
+
spec.metadata['source_code_uri'] = 'https://github.com/sorainc/sora_geocoding'
|
|
20
|
+
spec.metadata['changelog_uri'] = 'https://github.com/sorainc/sora_geocoding/blob/master/CHANGELOG.md'
|
|
21
21
|
|
|
22
22
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
23
23
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sora_geocoding
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- hirontan
|
|
@@ -99,8 +99,8 @@ licenses:
|
|
|
99
99
|
- MIT
|
|
100
100
|
metadata:
|
|
101
101
|
homepage_uri: https://rubygems.org/gems/sora_geocoding
|
|
102
|
-
source_code_uri: https://github.com/
|
|
103
|
-
changelog_uri: https://github.com/
|
|
102
|
+
source_code_uri: https://github.com/sorainc/sora_geocoding
|
|
103
|
+
changelog_uri: https://github.com/sorainc/sora_geocoding/blob/master/CHANGELOG.md
|
|
104
104
|
post_install_message:
|
|
105
105
|
rdoc_options: []
|
|
106
106
|
require_paths:
|