Method: Ransack::Nodes::Condition#eql?
- Defined in:
- lib/ransack/nodes/condition.rb
#eql?(other) ⇒ Boolean Also known as: ==
191 192 193 194 195 196 197 |
# File 'lib/ransack/nodes/condition.rb', line 191 def eql?(other) self.class == other.class && self.attributes == other.attributes && self.predicate == other.predicate && self.values == other.values && self.combinator == other.combinator end |