module ActiveRecord::Scoping::ClassMethods
def current_scope(skip_inherited_scope = false)
def current_scope(skip_inherited_scope = false) ScopeRegistry.value_for(:current_scope, self, skip_inherited_scope) end
def current_scope=(scope)
def current_scope=(scope) ScopeRegistry.set_value_for(:current_scope, self, scope) end
def scope_attributes
Collects attributes from scopes that should be applied when creating
:nodoc:
def scope_attributes all.scope_for_create end
def scope_attributes?
def scope_attributes? current_scope end