| Class | RR::WildcardMatchers::Boolean |
| In: |
lib/rr/wildcard_matchers/boolean.rb
|
| Parent: | Object |
# File lib/rr/wildcard_matchers/boolean.rb, line 8
8: def ==(other)
9: other.is_a?(self.class)
10: end
# File lib/rr/wildcard_matchers/boolean.rb, line 4 4: def wildcard_match?(other) 5: self == other || is_a_boolean?(other) 6: end