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

Class Method Summary collapse

Class Attribute Details

.targetObject

Returns the value of attribute target.



135
136
137
# File 'lib/armstrong.rb', line 135

def target
  @target
end

Class Method Details

.delegate(*methods) ⇒ Object



122
123
124
125
126
127
128
129
130
# File 'lib/armstrong.rb', line 122

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