Module: Kernel
- Defined in:
- lib/active_support/vendor/builder-2.1.2/blankslate.rb
Overview
Since Ruby is very dynamic, methods added to the ancestors of BlankSlate after BlankSlate is defined will show up in the list of available BlankSlate methods. We handle this by defining a hook in the Object and Kernel classes that will hide any method defined after BlankSlate has been loaded.
Class Method Summary collapse
- .blank_slate_method_added ⇒ Object
-
.method_added(name) ⇒ Object
Detect method additions to Kernel and remove them in the BlankSlate class.
Class Method Details
.blank_slate_method_added ⇒ Object
61 |
# File 'lib/active_support/vendor/builder-2.1.2/blankslate.rb', line 61 alias_method :blank_slate_method_added, :method_added |
.method_added(name) ⇒ Object
Detect method additions to Kernel and remove them in the BlankSlate class.
65 66 67 68 69 70 |
# File 'lib/active_support/vendor/builder-2.1.2/blankslate.rb', line 65 def method_added(name) result = blank_slate_method_added(name) return result if self != Kernel BlankSlate.hide(name) result end |