Sha256: 8c8e4868480a3ba74ae8d16ef667886795bf54061cc1dd722494a2a4d032326e
Contents?: true
Size: 873 Bytes
Versions: 2
Compression:
Stored size: 873 Bytes
Contents
## xxHash [![Build Status](https://travis-ci.org/nashby/xxhash.png?branch=master)](https://travis-ci.org/nashby/xxhash) Ruby wrapper for [xxHash](http://code.google.com/p/xxhash/) ### Install gem install xxhash ### Usage ```ruby require 'xxhash' text = "test" seed = 12345 XXhash.xxh32(text, seed) # => 3834992036 ``` ### Supported Ruby versions - MRI 1.9.3 - rbx-19mode Note: It doesn't work on JRuby as it uses C extension. ### Versioning Version 0.1.0 is equal to [r29](https://code.google.com/p/xxhash/source/detail?r=29) ## 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 ### Copyright Copyright (c) 2012 Vasiliy Ermolovich. See LICENSE.txt for further details.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
xxhash-0.1.1 | README.md |
xxhash-0.1.0 | README.md |