method

require

require(file, *extras)
public

No documentation available.

# File activesupport/lib/active_support/dependencies.rb, line 151
      def require(file, *extras) #:nodoc:
        if Dependencies.load?
          Dependencies.new_constants_in(Object) { super }
        else
          super
        end
      rescue Exception => exception  # errors from required file
        exception.blame_file! file
        raise
      end