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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5c8c715224717189a3cdf3f81f8355a7a53be38600df89f36ca0494b5675ee1
4
- data.tar.gz: b6494f6c74ae12099f355a9cbd255eb74cae9b53a49bff3dffa9b29f012943a0
3
+ metadata.gz: 3efa69b7fd18a9a7be858d7b909b096b2741fe68892db2eb80da975541a6b30a
4
+ data.tar.gz: 798e96acb34f1826fbc050b1d4cae8e0f051aa60423752b93029637c2336ac68
5
5
  SHA512:
6
- metadata.gz: 99670d66df938b290560c45ab0df6b2d527631a0be6048dacc888ecca3a3952829e6ee0a539517bbebc598860234d5b38096bb05720185957b0ae9bdab9b6dbb
7
- data.tar.gz: c81deeea74a982f6e6fc13ef8eaf5f0cf6e030a542f4db320d5c9c792e404b1ea2e0183ddfcde52a520065ab103d15f8af0a80ec8bccc1dfeeead72d5425ad6d
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
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2022 Atsushi Tatsuma
1
+ Copyright (c) 2020-2026 Atsushi Tatsuma
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -1,7 +1,5 @@
1
1
  require 'mkmf'
2
2
 
3
- abort 'libstdc++ is not found.' unless have_library('stdc++')
4
-
5
3
  $INCFLAGS << " -I$(srcdir)/src"
6
4
  $VPATH << "$(srcdir)/src"
7
5
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DartsClone
4
- VERSION = '0.3.2'
4
+ VERSION = '0.3.3'
5
5
  DARTS_CLONE_VERSION = '0.32'
6
6
  end
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.2
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: 2022-06-19 00:00:00.000000000 Z
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: 3.2.33
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: []