Module: Tins::Delegate
- Included in:
- Module
- Defined in:
- lib/tins/dslkit.rb
Overview
This module can be included into modules/classes to make the delegate method available.
Constant Summary collapse
- UNSET =
Object.new
Instance Method Summary collapse
-
#delegate(method_name, opts = {}) ⇒ Object
A method to easily delegate methods to an object, stored in an instance variable or returned by a method call.
Instance Method Details
#delegate(method_name, opts = {}) ⇒ Object
A method to easily delegate methods to an object, stored in an instance variable or returned by a method call.
It’s used like this:
class A
delegate :method_here, :@obj, :method_there
end
or:
class A
delegate :method_here, :method_call, :method_there
end
other_method_name defaults to method_name, if it wasn’t given.
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 |
# File 'lib/tins/dslkit.rb', line 747 def delegate(method_name, opts = {}) to = opts[:to] || UNSET as = opts[:as] || method_name raise ArgumentError, "to argument wasn't defined" if to == UNSET to = to.to_s case when to[0, 2] == '@@' define_method(as) do |*args, &block| if self.class.class_variable_defined?(to) self.class.class_variable_get(to).__send__(method_name, *args, &block) end end when to[0] == ?@ define_method(as) do |*args, &block| if instance_variable_defined?(to) instance_variable_get(to).__send__(method_name, *args, &block) end end when (?A..?Z).include?(to[0]) define_method(as) do |*args, &block| Object.const_get(to).__send__(method_name, *args, &block) end else define_method(as) do |*args, &block| __send__(to).__send__(method_name, *args, &block) end end end |