Sha256: f5feb036e0a43d27ac3d71d102a8e7fcb617e47fc7348648806d4c492f67eff5

Contents?: true

Size: 437 Bytes

Versions: 3

Compression:

Stored size: 437 Bytes

Contents

# Cubbyhole - The zero config, non-production, activemodel compliant datastore

Sinatra is dead simple, but it's more interesting to play with if you can store some data. The problem is that setting up ActiveRecord or DataMapper significantly complicates things.

Cubbyhole is designed to be absolutely zero config.

```ruby
require 'cubbyhole'


post = Post.create(:title => "Foo", :text => "Bar")

Post.get(post.id).title # => Foo
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cubbyhole-0.1.1 README.md
cubbyhole-0.1.0 README.md
cubbyhole-0.0.1 README.md