Class: HappyMapper::AnonymousWrapperClassFactory
- Inherits:
-
Object
- Object
- HappyMapper::AnonymousWrapperClassFactory
- Defined in:
- lib/happymapper.rb
Overview
Factory for creating anonmyous HappyMappers
Class Method Summary collapse
Class Method Details
.get(name, &blk) ⇒ Object
748 749 750 751 752 753 754 |
# File 'lib/happymapper.rb', line 748 def self.get(name, &blk) Class.new do include HappyMapper tag name instance_eval &blk end end |