amco / dolly

Not an ORM for CouchDB in rails.
8 stars 3 forks source link

Assign rev property #160

Closed ErickFabian closed 3 years ago

ErickFabian commented 3 years ago

Rev was not properly assigned if included in the doc attributes

 Previously

streaming = Streaming.where(slug: params['slug'])&.first.rev
=> nil

After

streaming = Streaming.where(slug: params['slug'])&.first.rev
=> "5-91549ddc9792e1336644fff2453ad8cd"