Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ryandotsmith/sfdb-rb

A ruby client for SFDB
https://github.com/ryandotsmith/sfdb-rb

Last synced: about 2 months ago
JSON representation

A ruby client for SFDB

Awesome Lists containing this project

README

        

# SFDB Ruby Client

A simple ruby client to interact with [SFDB](https://github.com/ryandotsmith/sfdb).

## Usage

```ruby
db = SFDB.new('localhost:8000')
uuid = SecureRandom.uuid
db.put(uuid, 'hello world')
db.get(uuid)
```