Method: Textbringer::Utils.remove_hook
- Defined in:
- lib/textbringer/utils.rb
.remove_hook(name, func, local: false) ⇒ Object
361 362 363 364 |
# File 'lib/textbringer/utils.rb', line 361 def remove_hook(name, func, local: false) hooks = get_hooks(local) hooks[name].delete(func) end |