module ActiveRecord::Scoping

Active Record Named Scopes

Public Instance Methods

populate_with_current_scope_attributes() click to toggle source
# File lib/active_record/scoping.rb, line 22
def populate_with_current_scope_attributes
  return unless self.class.scope_attributes?

  self.class.scope_attributes.each do |att,value|
    send("#{att}=", value) if respond_to?("#{att}=")
  end
end