Skip to content

Instantly share code, notes, and snippets.

@airportyh
Created August 29, 2009 13:07
Show Gist options
  • Save airportyh/177478 to your computer and use it in GitHub Desktop.
Save airportyh/177478 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
require 'couchrest'
def db
CouchRest.database!('http://127.0.0.1:5984/play')
end
get '/' do
db.get('2')
erb :index
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment