module SexyScopes::Arel::PredicateMethods

Public Instance Methods

&(other)
Alias for: and
and(other) click to toggle source
Calls superclass method
# File lib/sexy_scopes/arel/predicate_methods.rb, line 19
def and(other)
  SexyScopes.extend_predicate(super)
end
Also aliased as: &
not() click to toggle source
Calls superclass method
# File lib/sexy_scopes/arel/predicate_methods.rb, line 9
def not
  SexyScopes.extend_predicate(super)
end
Also aliased as: ~
or(other) click to toggle source
Calls superclass method
# File lib/sexy_scopes/arel/predicate_methods.rb, line 14
def or(other)
  SexyScopes.extend_predicate(super)
end
Also aliased as: |
|(other)
Alias for: or
~()
Alias for: not