Module: Singleton
- Defined in:
- lib/active_support/core_ext/object/duplicable.rb
Instance Method Summary collapse
-
#duplicable? ⇒ Boolean
Singleton instances are not duplicable:.
Instance Method Details
#duplicable? ⇒ Boolean
Singleton instances are not duplicable:
Class.new.include(Singleton).instance.dup # TypeError (can't dup instance of singleton
66 67 68 |
# File 'lib/active_support/core_ext/object/duplicable.rb', line 66 def duplicable? false end |