class ActivePStore::QueryMethods::WhereChain
Public Class Methods
new(scope)
click to toggle source
# File lib/active_pstore/query_methods.rb, line 4 def initialize(scope) @scope = scope end
Public Instance Methods
not(conditions)
click to toggle source
# File lib/active_pstore/query_methods.rb, line 8 def not(conditions) WhereDecider.new(@scope).decide(conditions, :reject) end