Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure annotate_rendered_view_with_filenames is configured
Action View is setup to copy the configuration from the application after initialization is finished, using `ActiveSupport.on_load(:action_view)` to make sure it only happens when `ActionView::Base` is loaded. We need to add our on_load hook after that, so we're also putting it in an after_initialize. Typically apps load all Rails railties before requiring gems with Bundler, so our after_initialize should always run after the one from Action View.
- Loading branch information