An open API service indexing awesome lists of open source software.

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.

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