removed {:reduce => false} in #all method to make it 0.10 comp.
This commit is contained in:
parent
dd480bcd75
commit
41eeedd49b
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ module CouchRest
|
||||||
# name of the current class. Take the standard set of
|
# name of the current class. Take the standard set of
|
||||||
# CouchRest::Database#view options.
|
# CouchRest::Database#view options.
|
||||||
def all(opts = {}, &block)
|
def all(opts = {}, &block)
|
||||||
view(:all, {:reduce => false}.merge(opts), &block)
|
view(:all, opts, &block)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns the number of documents that have the "couchrest-type" field
|
# Returns the number of documents that have the "couchrest-type" field
|
||||||
|
|
Loading…
Add table
Reference in a new issue