Sha256: 817fa6c2a0492d0c7ac2844c57322901fd4d21325770b6c52f655ae62ac71ea5

Contents?: true

Size: 1.27 KB

Versions: 58

Compression:

Stored size: 1.27 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, symbols, numbers, class and module objects; true otherwise.
  def duplicable?
    true
  end
end

class NilClass #:nodoc:
  def duplicable?
    false
  end
end

class FalseClass #:nodoc:
  def duplicable?
    false
  end
end

class TrueClass #:nodoc:
  def duplicable?
    false
  end
end

class Symbol #:nodoc:
  def duplicable?
    false
  end
end

class Numeric #:nodoc:
  def duplicable?
    false
  end
end

class Class #:nodoc:
  def duplicable?
    false
  end
end

class Module #:nodoc:
  def duplicable?
    false
  end
end

Version data entries

58 entries across 58 versions & 5 rubygems

Version Path
social_url_stats-0.0.1 vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/object/duplicable.rb
serializable_attributes-1.2.0 lib/serializable_attributes/duplicable.rb
activesupport-3.0.20 lib/active_support/core_ext/object/duplicable.rb
activesupport-3.0.19 lib/active_support/core_ext/object/duplicable.rb
activesupport-3.0.18 lib/active_support/core_ext/object/duplicable.rb
activesupport-3.0.17 lib/active_support/core_ext/object/duplicable.rb
activesupport-3.0.16 lib/active_support/core_ext/object/duplicable.rb
serializable_attributes-1.1.1 lib/serializable_attributes/duplicable.rb
activesupport-3.0.15 lib/active_support/core_ext/object/duplicable.rb
activesupport-3.0.14 lib/active_support/core_ext/object/duplicable.rb
serializable_attributes-1.1.0 lib/serializable_attributes/duplicable.rb
activesupport-3.0.13 lib/active_support/core_ext/object/duplicable.rb
activesupport-3.0.13.rc1 lib/active_support/core_ext/object/duplicable.rb
serializable_attributes-1.0.0 lib/serializable_attributes/duplicable.rb
activesupport-3.0.12 lib/active_support/core_ext/object/duplicable.rb
activesupport-3.0.12.rc1 lib/active_support/core_ext/object/duplicable.rb
serializable_attributes-0.9.0 lib/serializable_attributes/duplicable.rb
activesupport-3.0.11 lib/active_support/core_ext/object/duplicable.rb
messagebus_ruby_api-0.4.7 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/duplicable.rb
messagebus_ruby_api-0.4.4 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/object/duplicable.rb