Sha256: 4257d4e8a35a4b21499bf10ab52730827cdbc25c945a7b97cf8fd9560d564caa

Contents?: true

Size: 335 Bytes

Versions: 289

Compression:

Stored size: 335 Bytes

Contents

class Proc #:nodoc:
  def bind(object)
    block, time = self, Time.now
    (class << object; self end).class_eval do
      method_name = "__bind_#{time.to_i}_#{time.usec}"
      define_method(method_name, &block)
      method = instance_method(method_name)
      remove_method(method_name)
      method
    end.bind(object)
  end
end

Version data entries

289 entries across 256 versions & 30 rubygems

Version Path
activesupport-2.0.4 lib/active_support/core_ext/proc.rb
antfarm-0.3.0 rails/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
antfarm-0.4.0 rails/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.0.0 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.0.1 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.0.2 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.0.5 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.0.4 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.1.1 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.1.0 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.1.2 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.2.0 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.2.1 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.3.0 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.3.1 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.3.2 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.3.3 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.3.4 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.3.5 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.3.6 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb