Module: Eson::Chainable
- Included in:
- API
- Defined in:
- lib/eson/chainable.rb
Instance Method Summary collapse
- #chainable(&block) ⇒ Object private
- #extendable(&block) ⇒ Object private
Instance Method Details
#chainable(&block) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
7 8 9 10 11 |
# File 'lib/eson/chainable.rb', line 7 def chainable(&block) mod = Module.new(&block) include mod mod end |
#extendable(&block) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
14 15 16 17 18 |
# File 'lib/eson/chainable.rb', line 14 def extendable(&block) mod = Module.new(&block) extend mod mod end |