Sha256: f81cc3e1ab1eae42cfbe473750520eb4ca3c4b44e69068790da31f0e73fd7c5a

Contents?: true

Size: 1.93 KB

Versions: 73

Compression:

Stored size: 1.93 KB

Contents

#--
# Most objects are cloneable, but not all. For example you can't dup +nil+:
#
#   nil.dup # => TypeError: can't dup NilClass
#
# 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 +nil+, +false+, +true+, symbol, and number objects;
  # true otherwise.
  def duplicable?
    true
  end
end

class NilClass
  # +nil+ is not duplicable:
  #
  #   nil.duplicable? # => false
  #   nil.dup         # => TypeError: can't dup NilClass
  def duplicable?
    false
  end
end

class FalseClass
  # +false+ is not duplicable:
  #
  #   false.duplicable? # => false
  #   false.dup         # => TypeError: can't dup FalseClass
  def duplicable?
    false
  end
end

class TrueClass
  # +true+ is not duplicable:
  #
  #   true.duplicable? # => false
  #   true.dup         # => TypeError: can't dup TrueClass
  def duplicable?
    false
  end
end

class Symbol
  # Symbols are not duplicable:
  #
  #   :my_symbol.duplicable? # => false
  #   :my_symbol.dup         # => TypeError: can't dup Symbol
  def duplicable?
    false
  end
end

class Numeric
  # Numbers are not duplicable:
  #
  #  3.duplicable? # => false
  #  3.dup         # => TypeError: can't dup Fixnum
  def duplicable?
    false
  end
end

require 'bigdecimal'
class BigDecimal
  begin
    BigDecimal.new('4.56').dup

    def duplicable?
      true
    end
  rescue TypeError
    # can't dup, so use superclass implementation
  end
end

Version data entries

73 entries across 73 versions & 6 rubygems

Version Path
chewy-0.5.1 lib/chewy/backports/duplicable.rb
activesupport-4.1.6.rc2 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.0.10.rc2 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.1.6.rc1 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.0.10.rc1 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.0.9 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.1.5 lib/active_support/core_ext/object/duplicable.rb
chewy-0.5.0 lib/chewy/backports/duplicable.rb
activesupport-4.1.4 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.0.8 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.1.3 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.0.7 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.0.6 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.1.2 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.1.2.rc3 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.0.6.rc3 lib/active_support/core_ext/object/duplicable.rb
whos_dated_who-0.1.0 vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/duplicable.rb
activesupport-4.1.2.rc2 lib/active_support/core_ext/object/duplicable.rb
activesupport-4.0.6.rc2 lib/active_support/core_ext/object/duplicable.rb
whos_dated_who-0.0.1 vendor/bundle/gems/activesupport-4.1.1/lib/active_support/core_ext/object/duplicable.rb