archive_r_ruby 0.1.25 → 0.1.27
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/README.md +3 -3
- data/VERSION +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0583025b386dc10a8697274c59ebce397f2ef7cc2221f3cf8b4b4601642b39e9'
|
|
4
|
+
data.tar.gz: c92cfefa825d6cd60db3695fc59c8114d36ed1d141e8d9c4505e40e85de32f10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e447c2fb86e807bbf16985fe79016a9050430fcaa6d71255299d4ee315aa79a5f6e856020591c59f2ae64ea5559c6c177b04afc339e8eff830207896c47cd23
|
|
7
|
+
data.tar.gz: 62db9fbca084b194eab8f299bf5e8b8cebab1b5fa455ea8e95e7e98b4f1ce4788592b33e78f34799322c1fb709ecc70cc462de48c0f15df05c5b8335ceebb784
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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.
|
|
1
|
+
0.1.27
|
metadata
CHANGED
|
@@ -1,14 +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.
|
|
4
|
+
version: 0.1.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- raizo.tcs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '13.
|
|
19
|
+
version: '13.4'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '13.
|
|
26
|
+
version: '13.4'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: minitest
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|