method

autoload_at

autoload_at(path)
public

No documentation available.

# File activesupport/lib/active_support/dependencies/autoload.rb, line 55
    def autoload_at(path)
      @_at_path, old_path = path, @_at_path
      yield
    ensure
      @_at_path = old_path
    end