123456789_123456789_123456789_123456789_123456789_

Module: Singleton

Instance Attribute Summary

Instance Attribute Details

#duplicable?Boolean (readonly)

Singleton instances are not duplicable:

Class.new.include(Singleton).instance.dup # TypeError (can't dup instance of singleton
[ GitHub ]

  
# File 'activesupport/lib/active_support/core_ext/object/duplicable.rb', line 57

def duplicable?
  false
end