archive_r_ruby 0.1.24 → 0.1.26

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/VERSION +1 -1
  4. metadata +8 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3bdf4b720efcfd169d100b0ed684bf0b0941cb44ba2c0f4c821a86217ce37984
4
- data.tar.gz: 850df580220ef46da63855c7f31c790fa643155a9a1681f71f02c2d5394d12a5
3
+ metadata.gz: 71ec7ce83a89f359cfd1d6122bb9d43e532a4035e90b5c79571b4186402ae7f9
4
+ data.tar.gz: 47a799a0dc8197ceabea1a95d33d4018289bccd25914ec2325cdcb9e7ccd6f7c
5
5
  SHA512:
6
- metadata.gz: 3dfa1b7d88b514a180873e6af3f28fd5e74d776d442885bb0ee650ca088978839d88dad57bd1f3ee7f5e91ffa45aee6f3a65ad83503506eedd64c71cba4b69fd
7
- data.tar.gz: 6503f2c3914776680c52ebf1c2770c283199f7dadb5681d504754962dd7d5c57386fb21a4fe93970c5b3d94433666a3dd91cd4bc71cafcd37bc2c04e4d785492
6
+ metadata.gz: '099e4872d62696dc04daa593937824e6238cd20dfaf2ef41bdb2b63b1222faf3d778feb6f6ad1f919ba9b5b5ef3a38f108c3cf9e2da3248d780bcdf7ba33a58c'
7
+ data.tar.gz: 18147e5b97f0edd3937c1bc2631741024de1ec93e70d4e2336f618d0f7e6084fbd429ed2049241730b0b363cdc0a6454465fd044944eeb96a73bc0719bdfa8ad
data/README.md CHANGED
@@ -19,10 +19,10 @@ Ruby bindings expose the archive_r traverser API with a natural, block-friendly
19
19
  ```bash
20
20
  ./build.sh --with-ruby
21
21
  ```
22
- Ruby packaging is enabled by default, so the command above builds the core library, compiles the binding, and creates `build/bindings/ruby/archive_r-<version>.gem`.
22
+ Ruby packaging is enabled by default, so the command above builds the core library, compiles the binding, and creates `build/bindings/ruby/archive_r_ruby-<version>.gem`.
23
23
  2. Install the freshly built gem into your desired GEM_HOME:
24
24
  ```bash
25
- gem install --local build/bindings/ruby/archive_r-*.gem
25
+ gem install --local build/bindings/ruby/archive_r_ruby-*.gem
26
26
  ```
27
27
  3. When developing inside this repository the tests automatically install the gem into `build/ruby_gem_home` and set `ARCHIVE_R_CORE_ROOT=build` so the native extension links against the just-built static library.
28
28
 
@@ -35,7 +35,7 @@ cd bindings/ruby
35
35
  bundle install
36
36
  bundle exec rake compile # builds ext/archive_r
37
37
  bundle exec rake test # runs test/test_traverser.rb
38
- bundle exec rake build # creates archive_r-<version>.gem locally
38
+ bundle exec rake build # creates archive_r_ruby-<version>.gem locally
39
39
  ```
40
40
 
41
41
  The `rake test` task compiles the extension, installs it into `lib/`, and executes the Minitest suite.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.24
1
+ 0.1.26
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: archive_r_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.24
4
+ version: 0.1.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - raizo.tcs
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2026-04-19 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: rake
@@ -15,14 +16,14 @@ dependencies:
15
16
  requirements:
16
17
  - - "~>"
17
18
  - !ruby/object:Gem::Version
18
- version: '13.0'
19
+ version: '13.4'
19
20
  type: :development
20
21
  prerelease: false
21
22
  version_requirements: !ruby/object:Gem::Requirement
22
23
  requirements:
23
24
  - - "~>"
24
25
  - !ruby/object:Gem::Version
25
- version: '13.0'
26
+ version: '13.4'
26
27
  - !ruby/object:Gem::Dependency
27
28
  name: minitest
28
29
  requirement: !ruby/object:Gem::Requirement
@@ -95,6 +96,7 @@ metadata:
95
96
  source_code_uri: https://github.com/raizo-tcs/archive_r
96
97
  bug_tracker_uri: https://github.com/raizo-tcs/archive_r/issues
97
98
  changelog_uri: https://github.com/raizo-tcs/archive_r/releases
99
+ post_install_message:
98
100
  rdoc_options: []
99
101
  require_paths:
100
102
  - lib
@@ -109,7 +111,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
111
  - !ruby/object:Gem::Version
110
112
  version: '0'
111
113
  requirements: []
112
- rubygems_version: 4.0.9
114
+ rubygems_version: 3.1.6
115
+ signing_key:
113
116
  specification_version: 4
114
117
  summary: 'Ruby bindings for archive_r: libarchive-based streaming traversal for recursive
115
118
  nested archives (no temp files, no large in-memory buffers)'