From a41c55c0a36f3a0cedc2a72ae2b3d6a5a64d52ce Mon Sep 17 00:00:00 2001 From: Kir Shatrov Date: Sun, 6 Aug 2017 21:40:55 +0300 Subject: Document public hooks in AS::Reloader [ci skip] --- activesupport/lib/active_support/reloader.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/activesupport/lib/active_support/reloader.rb b/activesupport/lib/active_support/reloader.rb index 44062e3491..1e3141dc2a 100644 --- a/activesupport/lib/active_support/reloader.rb +++ b/activesupport/lib/active_support/reloader.rb @@ -28,14 +28,17 @@ module ActiveSupport define_callbacks :class_unload + # Registers a callback that will run once at application startup and every time the code is reloaded. def self.to_prepare(*args, &block) set_callback(:prepare, *args, &block) end + # Registers a callback that will run immediately before the classes are unloaded. def self.before_class_unload(*args, &block) set_callback(:class_unload, *args, &block) end + # Registers a callback that will run immediately after the classes are unloaded. def self.after_class_unload(*args, &block) set_callback(:class_unload, :after, *args, &block) end -- cgit v1.2.3