Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ryandotsmith/sfdb-rb
- Owner: ryandotsmith
- Created: 2013-06-06T17:39:38.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-06T17:39:49.000Z (over 11 years ago)
- Last Synced: 2024-10-13T17:47:19.810Z (3 months ago)
- Language: Ruby
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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)
```