dartsclone 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +3 -2
- data/CHANGELOG.md +3 -0
- data/Gemfile +1 -1
- data/README.md +4 -4
- data/ext/dartsclone/dartscloneext.hpp +1 -0
- data/lib/dartsclone/version.rb +1 -1
- 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: cb26ccf4db7270207b1243ba5d9ceb92ab0aafb9233474aa24f5aa22f89115eb
|
4
|
+
data.tar.gz: 16aa57d9ae6af8056c410516647ef6753516ba06a9a6db36701386eb08409156
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c3f7e648d54c76a72d8c1735cc1a1f623aeca0c04efff9386ff7ab1fc2607947e1308843d8480dcfeab283f695ca22f8bf1f07cfdf2f8c46854c235ed454587
|
7
|
+
data.tar.gz: 963c8b038ba62948ab3b77f1ded8b16ce21ea2663194ba6320008c85a2151d460230e93329ae8c2efa4d886e88dae4450860237afde242ae2ba8ec6124558bf1
|
data/.github/workflows/build.yml
CHANGED
@@ -6,8 +6,9 @@ jobs:
|
|
6
6
|
build:
|
7
7
|
runs-on: ubuntu-latest
|
8
8
|
strategy:
|
9
|
+
fail-fast: false
|
9
10
|
matrix:
|
10
|
-
ruby: [ '2.5', '2.6', '2.7' ]
|
11
|
+
ruby: [ '2.5', '2.6', '2.7', '3.0' ]
|
11
12
|
steps:
|
12
13
|
- uses: actions/checkout@v2
|
13
14
|
- name: Set up Ruby ${{ matrix.ruby }}
|
@@ -16,6 +17,6 @@ jobs:
|
|
16
17
|
ruby-version: ${{ matrix.ruby }}
|
17
18
|
- name: Build and test with Rake
|
18
19
|
run: |
|
19
|
-
gem install bundler
|
20
|
+
gem install --no-document bundler
|
20
21
|
bundle install --jobs 4 --retry 3
|
21
22
|
bundle exec rake
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[![Build Status](https://github.com/yoshoku/darts-clone.rb/workflows/build/badge.svg)](https://github.com/yoshoku/darts-clone.rb/actions?query=workflow%3Abuild)
|
4
4
|
[![Gem Version](https://badge.fury.io/rb/dartsclone.svg)](https://badge.fury.io/rb/dartsclone)
|
5
|
-
[![BSD 2-Clause License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)](https://github.com/yoshoku/darts-clone.rb/blob/
|
5
|
+
[![BSD 2-Clause License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)](https://github.com/yoshoku/darts-clone.rb/blob/main/LICENSE.txt)
|
6
6
|
|
7
7
|
Darts-clone.rb is a Ruby binding for the [Darts-clone](https://github.com/s-yata/darts-clone).
|
8
8
|
|
@@ -51,14 +51,14 @@ da.open('foo.dat')
|
|
51
51
|
## Contributing
|
52
52
|
|
53
53
|
Bug reports and pull requests are welcome on GitHub at https://github.com/yoshoku/darts-clone.rb.
|
54
|
-
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/yoshoku/darts-clone.rb/blob/
|
54
|
+
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/yoshoku/darts-clone.rb/blob/main/CODE_OF_CONDUCT.md).
|
55
55
|
|
56
56
|
## License
|
57
57
|
|
58
58
|
The gem is available as open source under the terms of the [BSD 2-clause License](https://opensource.org/licenses/BSD-2-Clause).
|
59
59
|
Moreover, the gem includes the source code of Darts-clone.
|
60
|
-
The License of Darts-clone can be found in [COPYING.md](https://github.com/yoshoku/darts-clone.rb/blob/
|
60
|
+
The License of Darts-clone can be found in [COPYING.md](https://github.com/yoshoku/darts-clone.rb/blob/main/ext/dartsclone/src/COPYING.md).
|
61
61
|
|
62
62
|
## Code of Conduct
|
63
63
|
|
64
|
-
Everyone interacting in the Darts project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/yoshoku/darts-clone.rb/blob/
|
64
|
+
Everyone interacting in the Darts project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/yoshoku/darts-clone.rb/blob/main/CODE_OF_CONDUCT.md).
|
@@ -238,6 +238,7 @@ class RbDoubleArray
|
|
238
238
|
rb_hash_aset(ret, ID2SYM(rb_intern("value")), INT2NUM(value));
|
239
239
|
rb_hash_aset(ret, ID2SYM(rb_intern("node_pos")), INT2NUM((int)node_pos));
|
240
240
|
rb_hash_aset(ret, ID2SYM(rb_intern("key_pos")), INT2NUM((int)key_pos));
|
241
|
+
RB_GC_GUARD(_key);
|
241
242
|
return ret;
|
242
243
|
};
|
243
244
|
|
data/lib/dartsclone/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dartsclone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yoshoku
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Darts-clone.rb is a Ruby binding for the Darts-clone.
|
14
14
|
email:
|
@@ -58,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: '0'
|
60
60
|
requirements: []
|
61
|
-
rubygems_version: 3.
|
61
|
+
rubygems_version: 3.2.7
|
62
62
|
signing_key:
|
63
63
|
specification_version: 4
|
64
64
|
summary: Ruby binding for the Darts-clone.
|