class FrozenRecord::Scope::WhereChain
Public Class Methods
new(scope)
click to toggle source
# File lib/frozen_record/scope.rb, line 18 def initialize(scope) @scope = scope end
Public Instance Methods
not(criterias)
click to toggle source
# File lib/frozen_record/scope.rb, line 22 def not(criterias) @scope.where_not(criterias) end