method

build_scope

build_scope(scope)
private

No documentation available.

# File activerecord/lib/active_record/associations/builder/association.rb, line 53
    def self.build_scope(scope)
      if scope && scope.arity == 0
        proc { instance_exec(&scope) }
      else
        scope
      end
    end