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
backlog-0.6.4 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.6.6 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.0 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.1 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.10 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.11 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.12 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.2 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.3 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.4 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.5 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.6 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.7 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.8 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.7.9 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.8.0 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.8.1 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.9.0 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
backlog-0.9.1 vendor/rails/activesupport/lib/active_support/core_ext/proc.rb
mack-active_record-0.8.2 lib/gems/activesupport-2.2.2/lib/active_support/core_ext/proc.rb