Type:
Class

The WatchStack keeps a stack of the modules being watched as files are loaded. If a file in the process of being loaded (parent.rb) triggers the load of another file (child.rb) the stack will ensure that child.rb handles the new constants.

If child.rb is being autoloaded, its constants will be added to autoloaded_constants. If it was being `require`d, they will be discarded.

This is handled by walking back up the watch stack and adding the constants found by child.rb to the list of original constants in parent.rb.

watching?
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::Dependencies/ActiveSupport::Dependencies::WatchStack

watching?() Instance Public methods

2025-01-10 15:47:30
new_constants
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::Dependencies/ActiveSupport::Dependencies::WatchStack

new_constants() Instance Public methods Returns a list of new constants found

2025-01-10 15:47:30
new
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::Dependencies/ActiveSupport::Dependencies::WatchStack

new() Class Public methods @watching is a stack of lists of constants being

2025-01-10 15:47:30
each
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::Dependencies/ActiveSupport::Dependencies::WatchStack

each(&block) Instance Public methods

2025-01-10 15:47:30
watch_namespaces
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::Dependencies/ActiveSupport::Dependencies::WatchStack

watch_namespaces(namespaces) Instance Public methods Add a set of modules to

2025-01-10 15:47:30