https://github.com/woodruffw/lzfse.rb
Ruby bindings for Apple's LZFSE, including LZVN
https://github.com/woodruffw/lzfse.rb
apple compression lzfse
Last synced: 3 months ago
JSON representation
Ruby bindings for Apple's LZFSE, including LZVN
- Host: GitHub
- URL: https://github.com/woodruffw/lzfse.rb
- Owner: woodruffw
- License: mit
- Created: 2021-05-31T18:28:42.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-17T19:50:25.000Z (5 months ago)
- Last Synced: 2025-04-06T07:18:42.942Z (3 months ago)
- Topics: apple, compression, lzfse
- Language: C
- Homepage: https://rubygems.org/gems/lzfse
- Size: 99.6 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
lzfse.rb
========[](https://github.com/woodruffw/lzfse.rb/actions/workflows/ci.yml)
[](https://badge.fury.io/rb/lzfse)Ruby bindings for Apple's reference implementation of [LZFSE](https://github.com/lzfse/lzfse).
Bindings are also provided for the internal LZVN APIs.
## Usage
You'll need the gem:
```bash
gem install lzfse
```Then, use the four public APIs:
```ruby
require "lzfse"# LZFSE
compressed = LZFSE.lzfse_compress "please compress this string"
LZFSE.lzfse_decompress compressed# LZVN
compressed = LZFSE.lzvn_compress "please also compress this string!"
LZFSE.lzvn_compress compressed
```Each API takes a single string and returns a string.
## License
*lzfse.rb* is licensed under the MIT license.
Apple's reference implementation of LZFSE is licensed under the 3-clause BSD license.