Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/doozer/active_support/object.rb
Instance Method Summary collapse
-
#duplicable? ⇒ Boolean
Can you safely .dup this object? False for nil, false, true, symbols, numbers, and class objects; true otherwise.
Instance Method Details
#duplicable? ⇒ Boolean
Can you safely .dup this object? False for nil, false, true, symbols, numbers, and class objects; true otherwise.
4 5 6 |
# File 'lib/doozer/active_support/object.rb', line 4 def duplicable? true end |