pairing_heap 0.3.0 → 2.0.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/.github/workflows/main.yml +12 -9
- data/.standard.yml +3 -0
- data/Gemfile.lock +43 -1
- data/README.md +328 -292
- data/Rakefile +2 -1
- data/lib/pairing_heap/version.rb +1 -1
- data/lib/pairing_heap.rb +169 -78
- data/pairing_heap.gemspec +15 -13
- metadata +32 -4
- data/.rubocop.yml +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: afe0b373b7c015091b7d7f19ba3d8d0004d1f7c257aad0fe678cf235dc288541
|
4
|
+
data.tar.gz: d3b93b4741c9255b67f0ca232cb881a32fa965b4390c903c4eda96b992961176
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d039d5f4a3b996a5f7b1f3193be96291ffa8d53537e45fa4fb6d61fbb83e9a1b897156c64918da8f08b3f0c78e905ef5e4588598495e3c655319e84a201bb037
|
7
|
+
data.tar.gz: 29669debc6da2984b31e986c63ae36776bd48ccf6febab79d0a8f74b304c1242d65aabeba2b2ff7362476448722c4c52bb6c170a8ebbd857d1c3e930e41a79c4
|
data/.github/workflows/main.yml
CHANGED
@@ -1,18 +1,21 @@
|
|
1
1
|
name: Ruby
|
2
2
|
|
3
3
|
on: [push,pull_request]
|
4
|
-
|
5
4
|
jobs:
|
6
5
|
build:
|
7
|
-
|
6
|
+
strategy:
|
7
|
+
fail-fast: false
|
8
|
+
matrix:
|
9
|
+
os: [ubuntu-latest, macos-latest]
|
10
|
+
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
|
11
|
+
ruby: ['2.7', '3.0', '3.1', '3.2', head, jruby, jruby-head, truffleruby, truffleruby-head]
|
12
|
+
runs-on: ${{ matrix.os }}
|
8
13
|
steps:
|
9
|
-
- uses: actions/checkout@
|
10
|
-
-
|
11
|
-
uses: ruby/setup-ruby@v1
|
14
|
+
- uses: actions/checkout@v3
|
15
|
+
- uses: ruby/setup-ruby@v1
|
12
16
|
with:
|
13
|
-
ruby-version:
|
14
|
-
-
|
15
|
-
|
16
|
-
gem install bundler -v 2.2.3
|
17
|
+
ruby-version: ${{ matrix.ruby }}
|
18
|
+
- run: |
|
19
|
+
gem install bundler -v 2.3.6
|
17
20
|
bundle install
|
18
21
|
bundle exec rake
|
data/.standard.yml
ADDED
data/Gemfile.lock
CHANGED
@@ -1,21 +1,63 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pairing_heap (
|
4
|
+
pairing_heap (2.0.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
+
ast (2.4.2)
|
10
|
+
codecov (0.6.0)
|
11
|
+
simplecov (>= 0.15, < 0.22)
|
12
|
+
docile (1.4.0)
|
13
|
+
json (2.6.3)
|
14
|
+
language_server-protocol (3.17.0.2)
|
9
15
|
minitest (5.15.0)
|
16
|
+
parallel (1.22.1)
|
17
|
+
parser (3.1.3.0)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.1.1)
|
10
20
|
rake (13.0.6)
|
21
|
+
regexp_parser (2.6.1)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rubocop (1.40.0)
|
24
|
+
json (~> 2.3)
|
25
|
+
parallel (~> 1.10)
|
26
|
+
parser (>= 3.1.2.1)
|
27
|
+
rainbow (>= 2.2.2, < 4.0)
|
28
|
+
regexp_parser (>= 1.8, < 3.0)
|
29
|
+
rexml (>= 3.2.5, < 4.0)
|
30
|
+
rubocop-ast (>= 1.23.0, < 2.0)
|
31
|
+
ruby-progressbar (~> 1.7)
|
32
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
33
|
+
rubocop-ast (1.24.0)
|
34
|
+
parser (>= 3.1.1.0)
|
35
|
+
rubocop-performance (1.15.1)
|
36
|
+
rubocop (>= 1.7.0, < 2.0)
|
37
|
+
rubocop-ast (>= 0.4.0)
|
38
|
+
ruby-progressbar (1.11.0)
|
39
|
+
simplecov (0.21.2)
|
40
|
+
docile (~> 1.1)
|
41
|
+
simplecov-html (~> 0.11)
|
42
|
+
simplecov_json_formatter (~> 0.1)
|
43
|
+
simplecov-html (0.12.3)
|
44
|
+
simplecov_json_formatter (0.1.4)
|
45
|
+
standard (1.20.0)
|
46
|
+
language_server-protocol (~> 3.17.0.2)
|
47
|
+
rubocop (= 1.40.0)
|
48
|
+
rubocop-performance (= 1.15.1)
|
49
|
+
unicode-display_width (2.3.0)
|
11
50
|
|
12
51
|
PLATFORMS
|
13
52
|
x86_64-darwin-21
|
53
|
+
x86_64-darwin-22
|
14
54
|
|
15
55
|
DEPENDENCIES
|
56
|
+
codecov (= 0.6.0)
|
16
57
|
minitest (~> 5.0)
|
17
58
|
pairing_heap!
|
18
59
|
rake (~> 13.0)
|
60
|
+
standard (~> 1.20)
|
19
61
|
|
20
62
|
BUNDLED WITH
|
21
63
|
2.3.6
|