method

check_preloadable!

check_preloadable!()
public

No documentation available.

# File activerecord/lib/active_record/reflection.rb, line 470
      def check_preloadable!
        return unless scope

        unless scope.arity == 0
          raise ArgumentError,             The association scope '#{name}' is instance dependent (the scope            block takes an argument). Preloading instance dependent scopes is            not supported..squish
        end
      end