method

excluded

rails latest stable - Class: ActiveSupport::Dependencies::ModuleConstMissing

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

excluded(base)
public

No documentation available.

# File activesupport/lib/active_support/dependencies.rb, line 67
      def self.excluded(base) #:nodoc:
        base.class_eval do
          if defined? const_missing_without_dependencies
            undef_method :const_missing
            alias_method :const_missing, :const_missing_without_dependencies
            undef_method :const_missing_without_dependencies
          end
        end
      end