first check in with one or two specs

This commit is contained in:
Chris Anderson 2008-03-17 23:07:57 -07:00
commit 2c42cf1ca5
2 changed files with 52 additions and 0 deletions

13
lib/couchrest.rb Normal file
View file

@ -0,0 +1,13 @@
require 'uri'
class Couchrest
def initialize server
@server = URI.parse server
end
def databases
end
end