Class: Method

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

Instance Method Summary collapse

Instance Method Details

#duplicable?Boolean

Methods are not duplicable:

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

Returns:

  • (Boolean)


97
98
99
# File 'lib/active_support/core_ext/object/duplicable.rb', line 97

def duplicable?
  false
end