Class: Object
- Inherits:
- BasicObject
- Includes:
- ObjectExtensions
- Defined in:
- lib/ruckus/extensions/object.rb,
lib/ruckus/extensions/duplicable.rb
Defined Under Namespace
Modules: ObjectExtensions
Instance Method Summary collapse
-
#duplicable? ⇒ Boolean
Can you safely .dup this object? False for nil, false, true, symbols, and numbers; true otherwise.
Methods included from ObjectExtensions
#meta_def, #meta_eval, #metaclass, #tap, #through, #try
Instance Method Details
#duplicable? ⇒ Boolean
Can you safely .dup this object? False for nil, false, true, symbols, and numbers; true otherwise.
4 5 6 |
# File 'lib/ruckus/extensions/duplicable.rb', line 4 def duplicable? true end |