Sha256: e682ea263ad2a420ac53066f20ba57da6705075f2cc20144ceefafae6c0e7557

Contents?: true

Size: 1.96 KB

Versions: 21

Compression:

Stored size: 1.96 KB

Contents

class Module
  # Provides a delegate class method to easily expose contained objects' methods
  # as your own. Pass one or more methods (specified as symbols or strings)
  # and the name of the target object as the final :to option (also a symbol
  # or string).  At least one method and the :to option are required.
  #
  # Delegation is particularly useful with Active Record associations:
  #
  #   class Greeter < ActiveRecord::Base
  #     def hello()   "hello"   end
  #     def goodbye() "goodbye" end
  #   end
  #
  #   class Foo < ActiveRecord::Base
  #     belongs_to :greeter
  #     delegate :hello, :to => :greeter
  #   end
  #
  #   Foo.new.hello   # => "hello"
  #   Foo.new.goodbye # => NoMethodError: undefined method `goodbye' for #<Foo:0x1af30c>
  #
  # Multiple delegates to the same target are allowed:
  #   class Foo < ActiveRecord::Base
  #     belongs_to :greeter
  #     delegate :hello, :goodbye, :to => :greeter
  #   end
  #
  #   Foo.new.goodbye # => "goodbye"
  #
  # Methods can be delegated to instance variables, class variables, or constants
  # by providing the variable as a symbol:
  #   class Foo
  #     CONSTANT_ARRAY = [0,1,2,3]
  #     @@class_array  = [4,5,6,7]
  #     
  #     def initialize
  #       @instance_array = [8,9,10,11]
  #     end
  #     delegate :sum, :to => :CONSTANT_ARRAY
  #     delegate :min, :to => :@@class_array
  #     delegate :max, :to => :@instance_array
  #   end
  #
  #   Foo.new.sum # => 6
  #   Foo.new.min # => 4
  #   Foo.new.max # => 11
  #
  def delegate(*methods)
    options = methods.pop
    unless options.is_a?(Hash) && to = options[:to]
      raise ArgumentError, "Delegation needs a target. Supply an options hash with a :to key as the last argument (e.g. delegate :hello, :to => :greeter)."
    end

    methods.each do |method|
      module_eval(<<-EOS, "(__DELEGATION__)", 1)
        def #{method}(*args, &block)
          #{to}.__send__(#{method.inspect}, *args, &block)
        end
      EOS
    end
  end
end

Version data entries

21 entries across 21 versions & 4 rubygems

Version Path
activesupport-2.0.1 lib/active_support/core_ext/module/delegation.rb
activesupport-2.0.0 lib/active_support/core_ext/module/delegation.rb
activesupport-2.0.5 lib/active_support/core_ext/module/delegation.rb
activesupport-2.0.2 lib/active_support/core_ext/module/delegation.rb
activesupport-2.0.4 lib/active_support/core_ext/module/delegation.rb
radiant-0.6.5.1 vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
radiant-0.6.5 vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
radiant-0.6.6 vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
radiant-0.6.7 vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
radiant-0.6.9 vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
radiant-0.6.8 vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
spree-0.0.9 vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
spree-0.2.0 vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
swivel-0.0.149 vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
swivel-0.0.150 vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
swivel-0.0.157 vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
swivel-0.0.156 vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
swivel-0.0.155 vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
swivel-0.0.152 vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb
swivel-0.0.175 vendor/activesupport-2.0.2-/lib/active_support/core_ext/module/delegation.rb