updated readme file
This commit is contained in:
parent
d9fe6ba374
commit
0c27fa6498
|
@ -31,7 +31,7 @@ Quick Start:
|
||||||
|
|
||||||
# with !, it creates the database if it doesn't already exist
|
# with !, it creates the database if it doesn't already exist
|
||||||
@db = CouchRest.database!("http://127.0.0.1:5984/couchrest-test")
|
@db = CouchRest.database!("http://127.0.0.1:5984/couchrest-test")
|
||||||
response = @db.save({:key => 'value', 'another key' => 'another value'})
|
response = @db.save_doc({:key => 'value', 'another key' => 'another value'})
|
||||||
doc = @db.get(response['id'])
|
doc = @db.get(response['id'])
|
||||||
puts doc.inspect
|
puts doc.inspect
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ Bulk Save:
|
||||||
|
|
||||||
Creating and Querying Views:
|
Creating and Querying Views:
|
||||||
|
|
||||||
@db.save({
|
@db.save_doc({
|
||||||
"_id" => "_design/first",
|
"_id" => "_design/first",
|
||||||
:views => {
|
:views => {
|
||||||
:test => {
|
:test => {
|
||||||
|
|
Loading…
Reference in a new issue