extlz4 0.2.4.2 → 0.2.4.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 +5 -5
- data/HISTORY.ja.md +5 -0
- data/README.md +1 -1
- data/ext/frameapi.c +1 -1
- data/lib/extlz4/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 9b6fe3483483101e9c211a0f3f11d93531da246ea3cc76122dc68e5de055d869
|
|
4
|
+
data.tar.gz: 1b707db6ec7779f516ce3c9b60ad95165d8127bbd07a651d4da5717e7716bdea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26e050bdd6430587345be66cfd75b501cb9b39bf11f586288773d8c429ff2698d242d270aacad051455c356e6078c6720d9c4f7582f2d4e8a28d5ea58d3456cd
|
|
7
|
+
data.tar.gz: f43f49a90cd5d144155fd0b46b70fa066eba298a923f4fc2e1317be85be4c50463cbee7d5683d3c6b6738fd317fcd60f18348effebd700b85e70e518d02dc652
|
data/HISTORY.ja.md
CHANGED
data/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ dmesg | ruby -r extlz4 -e 'LZ4.encode_file($stdin.binmode, $stdout.binmode)' |
|
|
|
18
18
|
* author: dearblue (mailto:dearblue@users.noreply.github.com)
|
|
19
19
|
* report issue to: <https://github.com/dearblue/ruby-extlz4/issues>
|
|
20
20
|
* how to install: `gem install extlz4`
|
|
21
|
-
* version: 0.2.4.
|
|
21
|
+
* version: 0.2.4.3
|
|
22
22
|
* product quality: technical preview
|
|
23
23
|
* licensing: BSD-2-Clause License
|
|
24
24
|
* dependency gems: none
|
data/ext/frameapi.c
CHANGED
|
@@ -503,7 +503,7 @@ fdec_read_args(int argc, VALUE argv[], size_t *size, VALUE *buf)
|
|
|
503
503
|
*size = NUM2SIZET(argv[0]);
|
|
504
504
|
*buf = argv[1];
|
|
505
505
|
rb_check_type(*buf, RUBY_T_STRING);
|
|
506
|
-
|
|
506
|
+
aux_str_reserve(*buf, *size);
|
|
507
507
|
rb_str_set_len(*buf, 0);
|
|
508
508
|
break;
|
|
509
509
|
default:
|
data/lib/extlz4/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: extlz4
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.4.
|
|
4
|
+
version: 0.2.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- dearblue
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
119
|
version: '0'
|
|
120
120
|
requirements: []
|
|
121
121
|
rubyforge_project:
|
|
122
|
-
rubygems_version: 2.
|
|
122
|
+
rubygems_version: 2.7.4
|
|
123
123
|
signing_key:
|
|
124
124
|
specification_version: 4
|
|
125
125
|
summary: ruby bindings for LZ4
|