Method: Module#class_def
- Defined in:
- lib/core/facets/module/module_def.rb
#class_def(name, &blk) ⇒ Object
Defines an instance method within a class/module.
CREDIT: WhyTheLuckyStiff
7 8 9 |
# File 'lib/core/facets/module/module_def.rb', line 7 def class_def name, &blk class_eval { define_method name, &blk } end |