Module | Hook |
In: |
lib/more/facets/hook.rb
|
TODO: hooks should be an inheritor
# File lib/more/facets/hook.rb, line 14 def hook(name) name = name.to_sym (class << self; self; end).class_eval %{ def #{name}(meth=nil, &blk) hooks[:#{name}] << (meth || blk) end } module_eval %{ def #{name}(*args) self.class.hooks[:#{name}].each do |blk| if Proc === blk blk.call(:#{name}, *args) else __send__(blk, :#{name}, *args) end end end } end