Sha256: 3e6726844713466fa202266e3a36ce40ab0a403c9c0f869d03ef7f8d8da609ce

Contents?: true

Size: 1.53 KB

Versions: 31

Compression:

Stored size: 1.53 KB

Contents

# frozen_string_literal: true

#--
# Most objects are cloneable, but not all. For example you can't dup methods:
#
#   method(:puts).dup # => TypeError: allocator undefined for Method
#
# Classes may signal their instances are not duplicable removing +dup+/+clone+
# or raising exceptions from them. So, to dup an arbitrary object you normally
# use an optimistic approach and are ready to catch an exception, say:
#
#   arbitrary_object.dup rescue object
#
# Rails dups objects in a few critical spots where they are not that arbitrary.
# That rescue is very expensive (like 40 times slower than a predicate), and it
# is often triggered.
#
# That's why we hardcode the following cases and check duplicable? instead of
# using that rescue idiom.
#++
class Object
  # Can you safely dup this object?
  #
  # False for method objects;
  # true otherwise.
  def duplicable?
    true
  end
end

class Method
  # Methods are not duplicable:
  #
  #   method(:puts).duplicable? # => false
  #   method(:puts).dup         # => TypeError: allocator undefined for Method
  def duplicable?
    false
  end
end

class UnboundMethod
  # Unbound methods are not duplicable:
  #
  #   method(:puts).unbind.duplicable? # => false
  #   method(:puts).unbind.dup         # => TypeError: allocator undefined for UnboundMethod
  def duplicable?
    false
  end
end

require "singleton"

module Singleton
  # Singleton instances are not duplicable:
  #
  #   Class.new.include(Singleton).instance.dup # TypeError (can't dup instance of singleton
  def duplicable?
    false
  end
end

Version data entries

31 entries across 29 versions & 7 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/object/duplicable.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.8.4/lib/active_support/core_ext/object/duplicable.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/core_ext/object/duplicable.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/core_ext/object/duplicable.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/core_ext/object/duplicable.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/object/duplicable.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.3.4 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.0.8.4 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.3.2 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.3.1 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.0.8.1 lib/active_support/core_ext/object/duplicable.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3/lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.3 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.2 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.1 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.0 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.0.rc2 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.0.rc1 lib/active_support/core_ext/object/duplicable.rb
activesupport-7.1.0.beta1 lib/active_support/core_ext/object/duplicable.rb