removed the Database class deprecation notices
This commit is contained in:
parent
a3cc649616
commit
ccdf9d779a
1 changed files with 0 additions and 18 deletions
|
@ -175,12 +175,6 @@ module CouchRest
|
||||||
result
|
result
|
||||||
end
|
end
|
||||||
|
|
||||||
### DEPRECATION NOTICE
|
|
||||||
def save(doc, bulk=false)
|
|
||||||
puts "CouchRest::Database's save method is being deprecated, please use save_doc instead"
|
|
||||||
save_doc(doc, bulk)
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
# POST an array of documents to CouchDB. If any of the documents are
|
# POST an array of documents to CouchDB. If any of the documents are
|
||||||
# missing ids, supply one from the uuid cache.
|
# missing ids, supply one from the uuid cache.
|
||||||
|
@ -219,12 +213,6 @@ module CouchRest
|
||||||
CouchRest.delete "#{@root}/#{slug}?rev=#{doc['_rev']}"
|
CouchRest.delete "#{@root}/#{slug}?rev=#{doc['_rev']}"
|
||||||
end
|
end
|
||||||
|
|
||||||
### DEPRECATION NOTICE
|
|
||||||
def delete(doc, bulk=false)
|
|
||||||
puts "CouchRest::Database's delete method is being deprecated, please use delete_doc instead"
|
|
||||||
delete_doc(doc, bulk)
|
|
||||||
end
|
|
||||||
|
|
||||||
# COPY an existing document to a new id. If the destination id currently exists, a rev must be provided.
|
# COPY an existing document to a new id. If the destination id currently exists, a rev must be provided.
|
||||||
# <tt>dest</tt> can take one of two forms if overwriting: "id_to_overwrite?rev=revision" or the actual doc
|
# <tt>dest</tt> can take one of two forms if overwriting: "id_to_overwrite?rev=revision" or the actual doc
|
||||||
# hash with a '_rev' key
|
# hash with a '_rev' key
|
||||||
|
@ -239,12 +227,6 @@ module CouchRest
|
||||||
CouchRest.copy "#{@root}/#{slug}", destination
|
CouchRest.copy "#{@root}/#{slug}", destination
|
||||||
end
|
end
|
||||||
|
|
||||||
### DEPRECATION NOTICE
|
|
||||||
def copy(doc, dest)
|
|
||||||
puts "CouchRest::Database's copy method is being deprecated, please use copy_doc instead"
|
|
||||||
copy_doc(doc, dest)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Compact the database, removing old document revisions and optimizing space use.
|
# Compact the database, removing old document revisions and optimizing space use.
|
||||||
def compact!
|
def compact!
|
||||||
CouchRest.post "#{@root}/_compact"
|
CouchRest.post "#{@root}/_compact"
|
||||||
|
|
Loading…
Add table
Reference in a new issue