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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c613ce9a9caad4430ef201edb734809f647c31c4d55201be5a5a7db7d5fa45d
4
- data.tar.gz: 8699200563407c193754f5bd76a345c6a6359dff22c8de4b7dda69fdb8438f4e
3
+ metadata.gz: afe0b373b7c015091b7d7f19ba3d8d0004d1f7c257aad0fe678cf235dc288541
4
+ data.tar.gz: d3b93b4741c9255b67f0ca232cb881a32fa965b4390c903c4eda96b992961176
5
5
  SHA512:
6
- metadata.gz: 744cb71f43c43a9f767a7d4ca7e3ce644eadb17af658d8877eba5e688cdeb2ccf53371218f2ce21022b3c32621db45c213485604354e20a8d14dfae9a3e7ee23
7
- data.tar.gz: e358f76ea6b2fc5932118d0ae053c01c53fddf4b6dc1f269a4645c6676ca5a7ff1e3cb4ee976bd2490577dae62388beaac668c9a45706b94e961aba983cf56d6
6
+ metadata.gz: d039d5f4a3b996a5f7b1f3193be96291ffa8d53537e45fa4fb6d61fbb83e9a1b897156c64918da8f08b3f0c78e905ef5e4588598495e3c655319e84a201bb037
7
+ data.tar.gz: 29669debc6da2984b31e986c63ae36776bd48ccf6febab79d0a8f74b304c1242d65aabeba2b2ff7362476448722c4c52bb6c170a8ebbd857d1c3e930e41a79c4
@@ -1,18 +1,21 @@
1
1
  name: Ruby
2
2
 
3
3
  on: [push,pull_request]
4
-
5
4
  jobs:
6
5
  build:
7
- runs-on: ubuntu-latest
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@v2
10
- - name: Set up Ruby
11
- uses: ruby/setup-ruby@v1
14
+ - uses: actions/checkout@v3
15
+ - uses: ruby/setup-ruby@v1
12
16
  with:
13
- ruby-version: 3.0.0
14
- - name: Run the default task
15
- run: |
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
@@ -0,0 +1,3 @@
1
+ ruby_version: 3.2.0
2
+ ignore:
3
+ - 'test/fib.rb'
data/Gemfile.lock CHANGED
@@ -1,21 +1,63 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pairing_heap (0.2.0)
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