Sha256: 9d99b54f6cd2728fbdb876843217128134ae547dbbffaaeefc5ee9ea7c091ddf

Contents?: true

Size: 1.31 KB

Versions: 55

Compression:

Stored size: 1.31 KB

Contents

class Object
  # copy from active_support
  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

class Object
  unless defined? instance_exec # 1.9
    module InstanceExecMethods #:nodoc:
    end
    include InstanceExecMethods

    # Evaluate the block with the given arguments within the context of
    # this object, so self is set to the method receiver.
    #
    # From Mauricio's http://eigenclass.org/hiki/bounded+space+instance_exec
    def instance_exec(*args, &block)
      begin
        old_critical, Thread.critical = Thread.critical, true
        n = 0
        n += 1 while respond_to?(method_name = "__instance_exec#{n}")
        InstanceExecMethods.module_eval { define_method(method_name, &block) }
      ensure
        Thread.critical = old_critical
      end

      begin
        send(method_name, *args)
      ensure
        InstanceExecMethods.module_eval { remove_method(method_name) } rescue nil
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
ruco-0.0.45 lib/ruco/core_ext/object.rb
ruco-0.0.44 lib/ruco/core_ext/object.rb
ruco-0.0.43 lib/ruco/core_ext/object.rb
ruco-0.0.42 lib/ruco/core_ext/object.rb
ruco-0.0.41 lib/ruco/core_ext/object.rb
ruco-0.0.40 lib/ruco/core_ext/object.rb
ruco-0.0.39 lib/ruco/core_ext/object.rb
ruco-0.0.38 lib/ruco/core_ext/object.rb
ruco-0.0.37 lib/ruco/core_ext/object.rb
ruco-0.0.36 lib/ruco/core_ext/object.rb
ruco-0.0.35 lib/ruco/core_ext/object.rb
ruco-0.0.34 lib/ruco/core_ext/object.rb
ruco-0.0.33 lib/ruco/core_ext/object.rb
ruco-0.0.32 lib/ruco/core_ext/object.rb
ruco-0.0.31 lib/ruco/core_ext/object.rb
ruco-0.0.30 lib/ruco/core_ext/object.rb
ruco-0.0.29 lib/ruco/core_ext/object.rb
ruco-0.0.28 lib/ruco/core_ext/object.rb
ruco-0.0.27 lib/ruco/core_ext/object.rb
ruco-0.0.26 lib/ruco/core_ext/object.rb