Class: UnboundMethod

Inherits:
Object show all
Defined in:
activesupport/lib/active_support/core_ext/object/duplicable.rb

Instance Method Summary collapse

Instance Method Details

#duplicable?Boolean

Unbound methods are not duplicable:

method(:puts).unbind.duplicable? # => false
method(:puts).unbind.dup         # => TypeError: allocator undefined for UnboundMethod

Returns:

  • (Boolean)


46
47
48
# File 'activesupport/lib/active_support/core_ext/object/duplicable.rb', line 46

def duplicable?
  false
end