Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/couchrest/model/core_extensions/hash.rb
Overview
This file contains various hacks for Rails compatibility.
Direct Known Subclasses
CouchRest::Model::CastedHash, CouchRest::Model::Designs::ViewRow
Class Method Summary collapse
-
.===(other) ⇒ Object
Hack so that CouchRest::Document, which descends from Hash, doesn’t appear to Rails routing as a Hash of options.
Class Method Details
.===(other) ⇒ Object
Hack so that CouchRest::Document, which descends from Hash, doesn’t appear to Rails routing as a Hash of options
5 6 7 8 |
# File 'lib/couchrest/model/core_extensions/hash.rb', line 5 def self.===(other) return false if self == Hash && other.is_a?(CouchRest::Document) super end |