Module: Aleph::Delegator
- Defined in:
- lib/armstrong.rb
Overview
thank you sinatra! Sinatra delegation mixin. Mixing this module into an object causes all methods to be delegated to the Aleph::Armstrong class. Used primarily at the top-level.
Class Attribute Summary collapse
-
.target ⇒ Object
Returns the value of attribute target.
Class Method Summary collapse
Class Attribute Details
.target ⇒ Object
Returns the value of attribute target.
143 144 145 |
# File 'lib/armstrong.rb', line 143 def target @target end |
Class Method Details
.delegate(*methods) ⇒ Object
130 131 132 133 134 135 136 137 138 |
# File 'lib/armstrong.rb', line 130 def self.delegate(*methods) methods.each do |method_name| define_method(method_name) do |*args, &block| return super(*args, &block) if respond_to? method_name Delegator.target.send(method_name, *args, &block) end private method_name end end |