dartsclone 0.3.2 → 0.3.3
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 +12 -0
- data/LICENSE.txt +1 -1
- data/ext/dartsclone/extconf.rb +0 -2
- data/lib/dartsclone/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3efa69b7fd18a9a7be858d7b909b096b2741fe68892db2eb80da975541a6b30a
|
|
4
|
+
data.tar.gz: 798e96acb34f1826fbc050b1d4cae8e0f051aa60423752b93029637c2336ac68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '002938143429bcf2a3c0c1529d4ecb32e6c62c018a3bd82eaf74649e164f0ad691fb5d2b7e440559e1b5f9f101233e27eaacb4600b73966290f2349223c431bd'
|
|
7
|
+
data.tar.gz: 3cdf2bc19461ff61cfe2f06bbd1907a0ea2eb32b9bf5b94af2205a8dccd26ad0f03d9b9c0689bbd69b5b9d2fb44f2b2c225ba8c451ce66abceebe1eaea676d77
|
data/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,36 @@
|
|
|
1
|
+
## 0.3.3
|
|
2
|
+
|
|
3
|
+
- Remove unnecessary C++ library loading check from native extensions build step.
|
|
4
|
+
|
|
1
5
|
## 0.3.2
|
|
6
|
+
|
|
2
7
|
- Refactor codes and configs with RuboCop.
|
|
3
8
|
|
|
4
9
|
## 0.3.1
|
|
10
|
+
|
|
5
11
|
- Add dummy constructor call at memory allocation of binding class to prevent occuring segment fault on GC when initialize method is failed.
|
|
6
12
|
|
|
7
13
|
## 0.3.0
|
|
14
|
+
|
|
8
15
|
- Add type declaration file: sig/dartsclone.rbs
|
|
9
16
|
|
|
10
17
|
## 0.2.3
|
|
18
|
+
|
|
11
19
|
- Fix some codes and configulation files.
|
|
12
20
|
|
|
13
21
|
## 0.2.2
|
|
22
|
+
|
|
14
23
|
- Refactor native extension codes considering garbage collection.
|
|
15
24
|
|
|
16
25
|
## 0.2.1
|
|
26
|
+
|
|
17
27
|
- Replace Data_ functions to TypedData_ functions.
|
|
18
28
|
- Fix some config files.
|
|
19
29
|
|
|
20
30
|
## 0.2.0
|
|
31
|
+
|
|
21
32
|
- Add get_array and set_array methods to dump and load array data.
|
|
22
33
|
|
|
23
34
|
## 0.1.0
|
|
35
|
+
|
|
24
36
|
- First release.
|
data/LICENSE.txt
CHANGED
data/ext/dartsclone/extconf.rb
CHANGED
data/lib/dartsclone/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dartsclone
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies: []
|
|
13
12
|
description: Darts-clone.rb provides Ruby bindings for the Darts-clone.
|
|
14
13
|
email:
|
|
@@ -38,7 +37,6 @@ metadata:
|
|
|
38
37
|
changelog_uri: https://github.com/yoshoku/darts-clone.rb/blob/master/CHANGELOG.md
|
|
39
38
|
documentation_uri: https://github.com/yoshoku/darts-clone.rb#usage
|
|
40
39
|
rubygems_mfa_required: 'true'
|
|
41
|
-
post_install_message:
|
|
42
40
|
rdoc_options: []
|
|
43
41
|
require_paths:
|
|
44
42
|
- lib
|
|
@@ -53,8 +51,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
53
51
|
- !ruby/object:Gem::Version
|
|
54
52
|
version: '0'
|
|
55
53
|
requirements: []
|
|
56
|
-
rubygems_version:
|
|
57
|
-
signing_key:
|
|
54
|
+
rubygems_version: 4.0.3
|
|
58
55
|
specification_version: 4
|
|
59
56
|
summary: Ruby bindings for the Darts-clone.
|
|
60
57
|
test_files: []
|