Created
September 15, 2012 17:47
-
-
Save JEG2/3729027 to your computer and use it in GitHub Desktop.
Simple database usage.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "yaml/store" | |
| db = YAML::Store.new("db.yml") | |
| email = "james@graysoftinc.com" | |
| db.transaction do | |
| db[email] = [ ] | |
| end | |
| db.transaction do | |
| db[email] << "My Project" | |
| end | |
| db.transaction do | |
| p db[email] | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment