kp_anydoc 0.2.4
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 +7 -0
- data/CHANGELOG.md +11 -0
- data/Cargo.lock +1438 -0
- data/Cargo.toml +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +69 -0
- data/THIRD-PARTY-LICENSES.txt +2856 -0
- data/ext/anydoc/Cargo.toml +15 -0
- data/ext/anydoc/extconf.rb +4 -0
- data/ext/anydoc/src/lib.rs +39 -0
- data/lib/anydoc/version.rb +5 -0
- data/lib/anydoc.rb +28 -0
- metadata +126 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: dc65d3eaabcfa2bfedac7e0e4e907acbff224831b0f4666e75700559cc58fe08
|
|
4
|
+
data.tar.gz: bf51d86f15f16fb64ffd33bde3e50853b300232084435bc22b8c302995de8344
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 1f8424d8264a5cf74e9619c3011d0372bbd8877997bdbff6bd65bbfd882e96455d6146cea6e8011454ff83ee3eae50da96fdd68e6aa156f635ded08a23c6fc75
|
|
7
|
+
data.tar.gz: 6e217d55c972399ad0b99eab7ad1f1c981def7dda09226d097b2da561fbfa97c07c94f9323894c8462303f8dca85f0b592b05d0e94992ce66219536904d8a042
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Versions track the [`anydoc`](https://crates.io/crates/anydoc) Rust crate this gem wraps: `kp_anydoc` 0.2.4 wraps `anydoc` 0.2.4.
|
|
4
|
+
|
|
5
|
+
## [0.2.4] - Unreleased
|
|
6
|
+
|
|
7
|
+
- Initial release of `kp_anydoc`, wrapping the `anydoc` Rust crate 0.2.4.
|
|
8
|
+
- `Anydoc.to_markdown(bytes, filename:)` converts document bytes to Markdown.
|
|
9
|
+
- Typed errors: `Anydoc::UnsupportedError`, `MalformedError`, `EncryptedError`, `ResourceLimitError`, `MissingPartError`, `IoError`.
|
|
10
|
+
- Precompiled native gems published for `x86_64-linux`, `aarch64-linux`, `x86_64-linux-musl`, and `arm64-darwin`, each carrying a Ruby 3.4 and 4.0 extension, with a source gem fallback.
|
|
11
|
+
- Bundles `THIRD-PARTY-LICENSES.txt`, generated from the Rust dependency tree, so the compiled extension ships its linked-in dependencies' attribution.
|