Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miyucy/snappy
libsnappy binding for Ruby
https://github.com/miyucy/snappy
ruby snappy
Last synced: 6 days ago
JSON representation
libsnappy binding for Ruby
- Host: GitHub
- URL: https://github.com/miyucy/snappy
- Owner: miyucy
- License: mit
- Created: 2011-03-24T03:32:21.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-01-08T01:21:02.000Z (10 months ago)
- Last Synced: 2024-08-07T08:14:35.715Z (3 months ago)
- Topics: ruby, snappy
- Language: Ruby
- Homepage:
- Size: 99.6 KB
- Stars: 180
- Watchers: 4
- Forks: 27
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Snappy
see https://github.com/google/snappy
## Preparation
### macOS
```bash
$ brew install snappy
$ brew install autoconf automake cmake libtool
```### Ubuntu
```bash
$ apt-get install libsnappy-dev -y
$ apt-get install libtool automake autoconf -y
```### Alpine
```bash
$ apk install snappy
$ apk install build-base libexecinfo automake autoconf libtool
```### Windows
[Ruby Installer](https://rubyinstaller.org/) 3.0 and earlier:
```bash
(in MSYS2 shell)
$ pacman -S mingw-w64-x86_64-snappy
```Ruby Installer 3.1 and later:
```bash
(in MSYS2 shell)
pacman -S mingw-w64-ucrt-x86_64-snappy
```## Installation
Add this line to your application's Gemfile:
gem 'snappy'
And then execute:
$ bundle
Or install it yourself as:
$ gem install snappy
## Usage
Snappy-java format
```ruby
require 'snappy'Snappy.deflate(source)
# => Compressed dataSnappy.inflate(source)
# => Decompressed data
```Hadoop-snappy format
```ruby
Snappy::Hadoop.deflate(source)
# => Compressed dataSnappy::Hadoop.inflate(source)
# => Decompressed data
```## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request