h3 3.7.1 → 3.7.4
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 +5 -5
- data/.github/dependabot.yml +11 -0
- data/.github/workflows/ruby_ci.yml +24 -0
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +24 -40
- data/LICENSE.md +1 -1
- data/README.md +3 -4
- data/ext/h3/Makefile +1 -1
- data/ext/h3/src/.github/workflows/test-linux.yml +3 -3
- data/ext/h3/src/.github/workflows/test-macos.yml +2 -2
- data/ext/h3/src/.github/workflows/test-website.yml +3 -3
- data/ext/h3/src/.github/workflows/test-windows.yml +3 -3
- data/ext/h3/src/CHANGELOG.md +4 -0
- data/ext/h3/src/VERSION +1 -1
- data/ext/h3/src/src/apps/testapps/testKRing.c +18 -0
- data/ext/h3/src/src/h3lib/lib/algos.c +4 -1
- data/h3.gemspec +7 -7
- data/lib/h3/bindings/private.rb +1 -0
- data/lib/h3/geo_json.rb +2 -0
- data/lib/h3/inspection.rb +6 -1
- data/lib/h3/version.rb +1 -1
- data/spec/geo_json_spec.rb +1 -1
- data/spec/inspection_spec.rb +13 -4
- data/spec/spec_helper.rb +2 -2
- metadata +20 -32
- data/.travis.yml +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0afa20a7c2275ee45b230c3bae8f3af1959d7c93af314bd49b11eff46cbe8ebc
|
4
|
+
data.tar.gz: 5ff07967dd552ef299d1c7637997c2320835fabb858d914c3b590ddac07e6402
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ced432edf93da613678ee7c48896a116fbf4f9b53908d9e50bcb3de148f9f16c7cdb3d2d422c79f7a2a210c0d7026af841a44eb05fe0b666584e331106c9c02
|
7
|
+
data.tar.gz: 6189e6185e58c8a5d64b6ea0e904d7571bb52b7f86fa86d3d086b0ff14594e856430071277ebbce5e6b1ae5e0641305ea166af5a158db048322fc3c6db3f2d65
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
3
|
+
# Please see the documentation for all configuration options:
|
4
|
+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
5
|
+
|
6
|
+
version: 2
|
7
|
+
updates:
|
8
|
+
- package-ecosystem: "bundler" # See documentation for possible values
|
9
|
+
directory: "/" # Location of package manifests
|
10
|
+
schedule:
|
11
|
+
interval: "daily"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
name: Ruby CI
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ master ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
test:
|
11
|
+
strategy:
|
12
|
+
fail-fast: false
|
13
|
+
matrix:
|
14
|
+
os: [ubuntu-latest, macos-latest]
|
15
|
+
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
|
16
|
+
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
|
17
|
+
runs-on: ${{ matrix.os }}
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v4
|
20
|
+
- uses: ruby/setup-ruby@v1
|
21
|
+
with:
|
22
|
+
ruby-version: ${{ matrix.ruby }}
|
23
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
24
|
+
- run: bundle exec rake
|
data/.rubocop.yml
CHANGED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.2
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
7
7
|
We track the MAJOR and MINOR version levels of Uber's H3 project (https://github.com/uber/h3) but maintain independent patch levels so we can make small fixes and non breaking changes.
|
8
8
|
|
9
|
+
## [3.7.3] - 2025-04-04
|
10
|
+
### Fixed
|
11
|
+
- `H3.from_string(nil)` should not crash
|
12
|
+
- Cmake fixed
|
13
|
+
|
14
|
+
## [3.7.2] - 2020-07-17
|
15
|
+
### Fixed
|
16
|
+
- kRing of invalid indexes should not crash.
|
17
|
+
|
9
18
|
## [3.7.1] - 2020-10-7
|
10
19
|
### Added
|
11
20
|
- Area and haversine distance functions:
|
data/Gemfile.lock
CHANGED
@@ -1,62 +1,46 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
h3 (3.7.
|
4
|
+
h3 (3.7.4)
|
5
5
|
ffi (~> 1.9)
|
6
6
|
rgeo-geojson (~> 2.1)
|
7
|
-
zeitwerk (~> 2.
|
7
|
+
zeitwerk (~> 2.5)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
docile (1.3.1)
|
20
|
-
ffi (1.13.1)
|
21
|
-
json (2.3.1)
|
22
|
-
rake (12.3.3)
|
23
|
-
rgeo (2.1.1)
|
24
|
-
rgeo-geojson (2.1.1)
|
12
|
+
diff-lcs (1.5.1)
|
13
|
+
ffi (1.17.1)
|
14
|
+
multi_json (1.15.0)
|
15
|
+
rake (13.2.1)
|
16
|
+
rgeo (3.0.0)
|
17
|
+
rgeo-geojson (2.2.0)
|
18
|
+
multi_json (~> 1.15)
|
25
19
|
rgeo (>= 1.0.0)
|
26
|
-
rspec (3.
|
27
|
-
rspec-core (~> 3.
|
28
|
-
rspec-expectations (~> 3.
|
29
|
-
rspec-mocks (~> 3.
|
30
|
-
rspec-core (3.
|
31
|
-
rspec-support (~> 3.
|
32
|
-
rspec-expectations (3.
|
20
|
+
rspec (3.13.0)
|
21
|
+
rspec-core (~> 3.13.0)
|
22
|
+
rspec-expectations (~> 3.13.0)
|
23
|
+
rspec-mocks (~> 3.13.0)
|
24
|
+
rspec-core (3.13.0)
|
25
|
+
rspec-support (~> 3.13.0)
|
26
|
+
rspec-expectations (3.13.0)
|
33
27
|
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
-
rspec-support (~> 3.
|
35
|
-
rspec-mocks (3.
|
28
|
+
rspec-support (~> 3.13.0)
|
29
|
+
rspec-mocks (3.13.0)
|
36
30
|
diff-lcs (>= 1.2.0, < 2.0)
|
37
|
-
rspec-support (~> 3.
|
38
|
-
rspec-support (3.
|
39
|
-
|
40
|
-
|
41
|
-
json (>= 1.8, < 3)
|
42
|
-
simplecov-html (~> 0.10.0)
|
43
|
-
simplecov-html (0.10.2)
|
44
|
-
term-ansicolor (1.7.0)
|
45
|
-
tins (~> 1.0)
|
46
|
-
thor (0.19.4)
|
47
|
-
tins (1.20.2)
|
48
|
-
yard (0.9.20)
|
49
|
-
zeitwerk (2.4.0)
|
31
|
+
rspec-support (~> 3.13.0)
|
32
|
+
rspec-support (3.13.1)
|
33
|
+
yard (0.9.37)
|
34
|
+
zeitwerk (2.6.18)
|
50
35
|
|
51
36
|
PLATFORMS
|
52
37
|
ruby
|
53
38
|
|
54
39
|
DEPENDENCIES
|
55
|
-
coveralls (~> 0.8)
|
56
40
|
h3!
|
57
|
-
rake (~>
|
41
|
+
rake (~> 13.0)
|
58
42
|
rspec (~> 3.8)
|
59
43
|
yard (~> 0.9)
|
60
44
|
|
61
45
|
BUNDLED WITH
|
62
|
-
2.
|
46
|
+
2.2.22
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
|
3
3
|

|
4
4
|
|
5
|
-
|
6
|
-
[](https://codeclimate.com/repos/5ca38395a86379029800281f/maintainability) [](https://coveralls.io/github/StuartApp/h3_ruby?branch=master) [](https://badge.fury.io/rb/h3)
|
5
|
+
 [](https://coveralls.io/github/seanhandley/h3_ruby?branch=master) [](https://codeclimate.com/github/seanhandley/h3_ruby/maintainability) [](https://badge.fury.io/rb/h3)
|
7
6
|
|
8
7
|
Ruby-to-C bindings for Uber's [H3 library](https://uber.github.io/h3/).
|
9
8
|
|
@@ -39,7 +38,7 @@ or add it to your Gemfile
|
|
39
38
|
|
40
39
|
```ruby
|
41
40
|
# Gemfile
|
42
|
-
gem "h3", "~> 3.
|
41
|
+
gem "h3", "~> 3.7"
|
43
42
|
```
|
44
43
|
|
45
44
|
## Usage
|
@@ -65,7 +64,7 @@ H3.to_boundary("8819429a9dfffff".to_i(16))
|
|
65
64
|
|
66
65
|
## Documentation
|
67
66
|
|
68
|
-
Please read [the Gem Documentation](https://www.rubydoc.info/
|
67
|
+
Please read [the Gem Documentation](https://www.rubydoc.info/gems/h3) for a full reference of available methods.
|
69
68
|
|
70
69
|
## Development
|
71
70
|
|
data/ext/h3/Makefile
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
make:
|
2
|
-
cd src; cmake . -DBUILD_SHARED_LIBS=true -DBUILD_FILTERS=OFF -DBUILD_BENCHMARKS=OFF; make
|
2
|
+
cd src; cmake . -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DBUILD_SHARED_LIBS=true -DBUILD_FILTERS=OFF -DBUILD_BENCHMARKS=OFF -DENABLE_LINTING=OFF; make
|
3
3
|
install:
|
4
4
|
: # do nothing, we'll load the lib directly
|
5
5
|
clean:
|
@@ -2,9 +2,9 @@ name: test-linux
|
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
5
|
-
branches: [master]
|
5
|
+
branches: [master, stable-*]
|
6
6
|
pull_request:
|
7
|
-
branches: [master]
|
7
|
+
branches: [master, stable-*]
|
8
8
|
|
9
9
|
jobs:
|
10
10
|
tests:
|
@@ -23,7 +23,7 @@ jobs:
|
|
23
23
|
- name: Install Doxygen
|
24
24
|
run: |
|
25
25
|
sudo apt update
|
26
|
-
sudo apt-get install doxygen graphviz
|
26
|
+
sudo apt-get install doxygen graphviz clang-format-9
|
27
27
|
|
28
28
|
- name: Configure build
|
29
29
|
run: cmake -Bbuild -DWARNINGS_AS_ERRORS=ON .
|
@@ -2,9 +2,9 @@ name: test-website
|
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
5
|
-
branches: [master]
|
5
|
+
branches: [master, stable-*]
|
6
6
|
pull_request:
|
7
|
-
branches: [master]
|
7
|
+
branches: [master, stable-*]
|
8
8
|
|
9
9
|
jobs:
|
10
10
|
tests:
|
@@ -16,7 +16,7 @@ jobs:
|
|
16
16
|
|
17
17
|
- uses: actions/setup-node@v1
|
18
18
|
with:
|
19
|
-
node-version:
|
19
|
+
node-version: 12.x
|
20
20
|
|
21
21
|
- name: Install FOSSA
|
22
22
|
run: |
|
@@ -2,9 +2,9 @@ name: test-windows
|
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
5
|
-
branches: [master]
|
5
|
+
branches: [master, stable-*]
|
6
6
|
pull_request:
|
7
|
-
branches: [master]
|
7
|
+
branches: [master, stable-*]
|
8
8
|
|
9
9
|
jobs:
|
10
10
|
tests:
|
@@ -24,7 +24,7 @@ jobs:
|
|
24
24
|
|
25
25
|
- name: Configure build
|
26
26
|
shell: cmd
|
27
|
-
run: cmake -Bbuild -A ${{ matrix.arch }} -DWARNINGS_AS_ERRORS=ON .
|
27
|
+
run: cmake -Bbuild -A ${{ matrix.arch }} -DWARNINGS_AS_ERRORS=ON -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTING=ON .
|
28
28
|
|
29
29
|
- name: Build
|
30
30
|
working-directory: build
|
data/ext/h3/src/CHANGELOG.md
CHANGED
@@ -7,6 +7,10 @@ The public API of this library consists of the functions declared in file
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [3.7.2] - 2021-07-15
|
11
|
+
### Fixed
|
12
|
+
- `gridDisk` of invalid indexes should not crash. (#498)
|
13
|
+
|
10
14
|
## [3.7.1] - 2020-10-05
|
11
15
|
### Fixed
|
12
16
|
- Finding invalid edge boundaries should not crash. (#399)
|
data/ext/h3/src/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.7.
|
1
|
+
3.7.2
|
@@ -351,4 +351,22 @@ SUITE(kRing) {
|
|
351
351
|
}
|
352
352
|
}
|
353
353
|
}
|
354
|
+
|
355
|
+
TEST(kRingInvalid) {
|
356
|
+
int k = 1000;
|
357
|
+
int kSz = H3_EXPORT(maxKringSize)(k);
|
358
|
+
H3Index *neighbors = calloc(kSz, sizeof(H3Index));
|
359
|
+
H3_EXPORT(kRing)(0x7fffffffffffffff, k, neighbors);
|
360
|
+
// Assertion is should not crash - should return an error in the future
|
361
|
+
free(neighbors);
|
362
|
+
}
|
363
|
+
|
364
|
+
TEST(kRingInvalidDigit) {
|
365
|
+
int k = 2;
|
366
|
+
int kSz = H3_EXPORT(maxKringSize)(k);
|
367
|
+
H3Index *neighbors = calloc(kSz, sizeof(H3Index));
|
368
|
+
H3_EXPORT(kRing)(0x4d4b00fe5c5c3030, k, neighbors);
|
369
|
+
// Assertion is should not crash - should return an error in the future
|
370
|
+
free(neighbors);
|
371
|
+
}
|
354
372
|
}
|
@@ -317,7 +317,10 @@ H3Index h3NeighborRotations(H3Index origin, Direction dir, int* rotations) {
|
|
317
317
|
} else {
|
318
318
|
Direction oldDigit = H3_GET_INDEX_DIGIT(out, r + 1);
|
319
319
|
Direction nextDir;
|
320
|
-
if (
|
320
|
+
if (oldDigit == INVALID_DIGIT) {
|
321
|
+
// Only possible on invalid input
|
322
|
+
return H3_NULL;
|
323
|
+
} else if (isResClassIII(r + 1)) {
|
321
324
|
H3_SET_INDEX_DIGIT(out, r + 1, NEW_DIGIT_II[oldDigit][dir]);
|
322
325
|
nextDir = NEW_ADJUSTMENT_II[oldDigit][dir];
|
323
326
|
} else {
|
data/h3.gemspec
CHANGED
@@ -5,19 +5,19 @@ Gem::Specification.new do |spec|
|
|
5
5
|
spec.version = H3::VERSION
|
6
6
|
spec.licenses = ["MIT"]
|
7
7
|
spec.summary = "C Bindings for Uber's H3 library"
|
8
|
-
spec.homepage = "https://github.com/
|
9
|
-
spec.authors = ["
|
10
|
-
spec.email = "
|
8
|
+
spec.homepage = "https://github.com/seanhandley/h3_ruby"
|
9
|
+
spec.authors = ["Sean Handley", "Xavier Noria", "Lachlan Laycock"]
|
10
|
+
spec.email = "sean.handley@gmail.com"
|
11
11
|
|
12
|
-
spec.required_ruby_version = "
|
12
|
+
spec.required_ruby_version = ">= 2.5"
|
13
13
|
spec.files = `git ls-files --recurse-submodules`.split("\n")
|
14
14
|
|
15
15
|
spec.add_runtime_dependency "ffi", "~> 1.9"
|
16
16
|
spec.add_runtime_dependency "rgeo-geojson", "~> 2.1"
|
17
|
-
spec.add_runtime_dependency "zeitwerk", "~> 2.
|
17
|
+
spec.add_runtime_dependency "zeitwerk", "~> 2.5"
|
18
18
|
|
19
|
-
spec.add_development_dependency "coveralls", "~> 0.8"
|
20
|
-
spec.add_development_dependency "rake", "~>
|
19
|
+
# spec.add_development_dependency "coveralls", "~> 0.8"
|
20
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
21
21
|
spec.add_development_dependency "rspec", "~> 3.8"
|
22
22
|
spec.add_development_dependency "yard", "~> 0.9"
|
23
23
|
|
data/lib/h3/bindings/private.rb
CHANGED
@@ -57,6 +57,7 @@ module H3
|
|
57
57
|
attach_function :point_distance_m, :pointDistM, [GeoCoord, GeoCoord], :double
|
58
58
|
attach_function :polyfill, [GeoPolygon, Resolution, H3IndexesOut], :void
|
59
59
|
attach_function :res_0_indexes, :getRes0Indexes, [H3IndexesOut], :void
|
60
|
+
attach_function :string_to_h3, :stringToH3, %i[string], :h3_index
|
60
61
|
attach_function :uncompact, [H3IndexesIn, :size_t, H3IndexesOut, :size_t, Resolution], :bool
|
61
62
|
end
|
62
63
|
end
|
data/lib/h3/geo_json.rb
CHANGED
data/lib/h3/inspection.rb
CHANGED
@@ -44,8 +44,13 @@ module H3
|
|
44
44
|
# H3.from_string("8928308280fffff")
|
45
45
|
# 617700169958293503
|
46
46
|
#
|
47
|
+
# @raise [ArgumentError] If h3_string is nil
|
48
|
+
#
|
47
49
|
# @return [Integer] H3 index
|
48
|
-
|
50
|
+
def from_string(h3_string)
|
51
|
+
raise ArgumentError if h3_string.nil?
|
52
|
+
Bindings::Private.string_to_h3(h3_string)
|
53
|
+
end
|
49
54
|
|
50
55
|
# @!method pentagon?(h3_index)
|
51
56
|
#
|
data/lib/h3/version.rb
CHANGED
data/spec/geo_json_spec.rb
CHANGED
data/spec/inspection_spec.rb
CHANGED
@@ -20,12 +20,21 @@ RSpec.describe H3 do
|
|
20
20
|
end
|
21
21
|
|
22
22
|
describe ".from_string" do
|
23
|
-
let(:h3_index) { "8928308280fffff"}
|
24
|
-
let(:result) { h3_index.to_i(16) }
|
25
|
-
|
26
23
|
subject(:from_string) { H3.from_string(h3_index) }
|
24
|
+
context "- valid" do
|
25
|
+
let(:h3_index) { "8928308280fffff"}
|
26
|
+
let(:result) { h3_index.to_i(16) }
|
27
27
|
|
28
|
-
|
28
|
+
it { is_expected.to eq(result) }
|
29
|
+
end
|
30
|
+
|
31
|
+
context "- nil" do
|
32
|
+
let(:h3_index) { nil }
|
33
|
+
|
34
|
+
it "raises an error" do
|
35
|
+
expect { subject }.to raise_error(ArgumentError)
|
36
|
+
end
|
37
|
+
end
|
29
38
|
end
|
30
39
|
|
31
40
|
describe ".to_string" do
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: h3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.7.
|
4
|
+
version: 3.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Lachlan Laycock
|
8
7
|
- Sean Handley
|
9
|
-
|
8
|
+
- Xavier Noria
|
9
|
+
- Lachlan Laycock
|
10
|
+
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
12
|
-
date:
|
13
|
+
date: 2025-04-04 00:00:00.000000000 Z
|
13
14
|
dependencies:
|
14
15
|
- !ruby/object:Gem::Dependency
|
15
16
|
name: ffi
|
@@ -45,42 +46,28 @@ dependencies:
|
|
45
46
|
requirements:
|
46
47
|
- - "~>"
|
47
48
|
- !ruby/object:Gem::Version
|
48
|
-
version: '2.
|
49
|
+
version: '2.5'
|
49
50
|
type: :runtime
|
50
51
|
prerelease: false
|
51
52
|
version_requirements: !ruby/object:Gem::Requirement
|
52
53
|
requirements:
|
53
54
|
- - "~>"
|
54
55
|
- !ruby/object:Gem::Version
|
55
|
-
version: '2.
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: coveralls
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - "~>"
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '0.8'
|
63
|
-
type: :development
|
64
|
-
prerelease: false
|
65
|
-
version_requirements: !ruby/object:Gem::Requirement
|
66
|
-
requirements:
|
67
|
-
- - "~>"
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '0.8'
|
56
|
+
version: '2.5'
|
70
57
|
- !ruby/object:Gem::Dependency
|
71
58
|
name: rake
|
72
59
|
requirement: !ruby/object:Gem::Requirement
|
73
60
|
requirements:
|
74
61
|
- - "~>"
|
75
62
|
- !ruby/object:Gem::Version
|
76
|
-
version: '
|
63
|
+
version: '13.0'
|
77
64
|
type: :development
|
78
65
|
prerelease: false
|
79
66
|
version_requirements: !ruby/object:Gem::Requirement
|
80
67
|
requirements:
|
81
68
|
- - "~>"
|
82
69
|
- !ruby/object:Gem::Version
|
83
|
-
version: '
|
70
|
+
version: '13.0'
|
84
71
|
- !ruby/object:Gem::Dependency
|
85
72
|
name: rspec
|
86
73
|
requirement: !ruby/object:Gem::Requirement
|
@@ -109,19 +96,21 @@ dependencies:
|
|
109
96
|
- - "~>"
|
110
97
|
- !ruby/object:Gem::Version
|
111
98
|
version: '0.9'
|
112
|
-
description:
|
113
|
-
email:
|
99
|
+
description:
|
100
|
+
email: sean.handley@gmail.com
|
114
101
|
executables: []
|
115
102
|
extensions:
|
116
103
|
- ext/h3/extconf.rb
|
117
104
|
extra_rdoc_files: []
|
118
105
|
files:
|
119
106
|
- ".codeclimate.yml"
|
107
|
+
- ".github/dependabot.yml"
|
108
|
+
- ".github/workflows/ruby_ci.yml"
|
120
109
|
- ".gitignore"
|
121
110
|
- ".gitmodules"
|
122
111
|
- ".rspec"
|
123
112
|
- ".rubocop.yml"
|
124
|
-
- ".
|
113
|
+
- ".ruby-version"
|
125
114
|
- CHANGELOG.md
|
126
115
|
- CONTRIBUTING.md
|
127
116
|
- Gemfile
|
@@ -444,28 +433,27 @@ files:
|
|
444
433
|
- spec/support/shared_contexts/constants.rb
|
445
434
|
- spec/traversal_spec.rb
|
446
435
|
- spec/unidirectional_edges_spec.rb
|
447
|
-
homepage: https://github.com/
|
436
|
+
homepage: https://github.com/seanhandley/h3_ruby
|
448
437
|
licenses:
|
449
438
|
- MIT
|
450
439
|
metadata: {}
|
451
|
-
post_install_message:
|
440
|
+
post_install_message:
|
452
441
|
rdoc_options: []
|
453
442
|
require_paths:
|
454
443
|
- lib
|
455
444
|
required_ruby_version: !ruby/object:Gem::Requirement
|
456
445
|
requirements:
|
457
|
-
- - "
|
446
|
+
- - ">="
|
458
447
|
- !ruby/object:Gem::Version
|
459
|
-
version: '2.
|
448
|
+
version: '2.5'
|
460
449
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
461
450
|
requirements:
|
462
451
|
- - ">="
|
463
452
|
- !ruby/object:Gem::Version
|
464
453
|
version: '0'
|
465
454
|
requirements: []
|
466
|
-
|
467
|
-
|
468
|
-
signing_key:
|
455
|
+
rubygems_version: 3.1.4
|
456
|
+
signing_key:
|
469
457
|
specification_version: 4
|
470
458
|
summary: C Bindings for Uber's H3 library
|
471
459
|
test_files: []
|