couchrest_model/lib/database.rb
2008-03-19 08:57:20 -07:00

32 lines
559 B
Ruby

class CouchRest
class Database
attr_accessor :host, :name
def initialize host, name
@name = name
@host = host
@root = "#{host}/#{name}"
end
def documents
view "_all_docs"
end
def view name
CouchRest.get "#{@root}/#{name}"
end
def save doc
if doc['_id']
url = doc['_id']
CouchRest.put "#{@root}/#{doc['_id']}", doc
else
CouchRest.post "#{@root}", doc
end
end
def delete!
CouchRest.delete @root
end
end
end