https://github.com/jnunemaker/prey
[UNFINISHED] Kestrel client gem based on thrift interface.
https://github.com/jnunemaker/prey
Last synced: 10 months ago
JSON representation
[UNFINISHED] Kestrel client gem based on thrift interface.
- Host: GitHub
- URL: https://github.com/jnunemaker/prey
- Owner: jnunemaker
- License: mit
- Created: 2014-06-22T12:01:03.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-07-05T15:14:05.000Z (almost 10 years ago)
- Last Synced: 2024-12-28T04:45:22.320Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
**Note**: This is unfinished. I don't remember what is left and don't have a need for it anymore but I'm leaving it in case anyone stumbles across it and finds it useful.
# Prey
Kestrel client gem that uses the thrift interface.
## Installation
Not released yet.
## Usage
```ruby
client = Prey::Client.new
client.put("events", "something")
items = client.get("events")
items.each do |item|
p item.data
end
```
## Contributing
1. Fork it ( https://github.com/[my-github-username]/prey/fork )
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 a new Pull Request