Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/blankslate.rb
Overview
Same as above, except in Object.
Class Method Summary collapse
- .blank_slate_method_added ⇒ Object
- .find_hidden_method(name) ⇒ Object
-
.method_added(name) ⇒ Object
Detect method additions to Object and remove them in the BlankSlate class.
Class Method Details
.blank_slate_method_added ⇒ Object
75 |
# File 'lib/blankslate.rb', line 75 alias_method :blank_slate_method_added, :method_added |
.find_hidden_method(name) ⇒ Object
86 87 88 |
# File 'lib/blankslate.rb', line 86 def find_hidden_method(name) nil end |
.method_added(name) ⇒ Object
Detect method additions to Object and remove them in the BlankSlate class.
79 80 81 82 83 84 |
# File 'lib/blankslate.rb', line 79 def method_added(name) result = blank_slate_method_added(name) return result if self != Object BlankSlate.hide(name) result end |