anydoc-ruby 0.1.7-aarch64-linux → 0.1.8-aarch64-linux
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 +12 -0
- data/lib/anydoc/3.2/anydoc.so +0 -0
- data/lib/anydoc/3.3/anydoc.so +0 -0
- data/lib/anydoc/3.4/anydoc.so +0 -0
- data/lib/anydoc/4.0/anydoc.so +0 -0
- data/lib/anydoc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d985f1cd8e50942ac705cd48619e0b297414b089cf3660a8e6bfd70d4e166fc
|
|
4
|
+
data.tar.gz: 8f8256e9101b396f3fd471b7feb64404041a661e49ca2b95887695621abd9ea2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 352658317f6f1b2797414e5a490f86e4bc4b809092d5c06580f086df78f438dbe5c7d1a3ffd70cbb69400a0623390d55fcb05f3728495c18787bd32325933a05
|
|
7
|
+
data.tar.gz: 482e272ae820b8d6ccb19bc2ce3373bca7f819a9d772780866642892674aca1c211e1f6d10bb1c0b32f006b123f8abd78d054165faab74012200be39f04774ac
|
data/README.md
CHANGED
|
@@ -144,6 +144,18 @@ bundle exec rake gems:all # the source gem and all seven platforms
|
|
|
144
144
|
|
|
145
145
|
Run these through Rake rather than calling `rb-sys-dock` from this directory: the container mounts the shell's working directory, and the build needs the crate one level above it, so the tasks run the CLI from the repository root with `--directory ruby`. The first build of each platform pulls a multi-gigabyte image.
|
|
146
146
|
|
|
147
|
+
### Releasing
|
|
148
|
+
|
|
149
|
+
The gem version tracks the version of the crate it wraps, so a release starts from a crate version bump:
|
|
150
|
+
|
|
151
|
+
1. Bump `lib/anydoc/version.rb` and the `anydoc` dependency in `ext/anydoc/Cargo.toml` to the crate's version.
|
|
152
|
+
2. `sh scripts/check-versions.sh` from the repository root, which fails unless all seven version locations agree.
|
|
153
|
+
3. Tag `ruby-v<version>` and push it.
|
|
154
|
+
|
|
155
|
+
The tag runs [`.github/workflows/release-ruby.yml`](../.github/workflows/release-ruby.yml), which cross-compiles every platform gem, installs and tests each one, pushes them through RubyGems trusted publishing, and attaches them to a GitHub release. A `workflow_dispatch` run does everything except publish.
|
|
156
|
+
|
|
157
|
+
Because the versions are locked together, a fix that touches only the bindings waits for the next crate release. Shipping one sooner means relaxing the version gate for that release.
|
|
158
|
+
|
|
147
159
|
## License
|
|
148
160
|
|
|
149
161
|
[MIT](https://github.com/honzasterba/anydoc/blob/main/LICENSE)
|
data/lib/anydoc/3.2/anydoc.so
CHANGED
|
Binary file
|
data/lib/anydoc/3.3/anydoc.so
CHANGED
|
Binary file
|
data/lib/anydoc/3.4/anydoc.so
CHANGED
|
Binary file
|
data/lib/anydoc/4.0/anydoc.so
CHANGED
|
Binary file
|
data/lib/anydoc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: anydoc-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Sterba
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-08-
|
|
12
|
+
date: 2026-08-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Ruby bindings for the anydoc Rust crate. Converts Word, PowerPoint, Excel,
|
|
15
15
|
OpenDocument, RTF, EPUB, CSV, and PDF documents into clean GitHub-Flavored Markdown,
|