Method: Kernel#classy_module
- Defined in:
- lib/hobosupport/module.rb
#classy_module(&b) ⇒ Object
60 61 62 63 64 65 |
# File 'lib/hobosupport/module.rb', line 60 def classy_module(&b) m = Module.new m. :included do |base| base.class_eval &b end end |