module Singleton::SingletonClassMethods

def clone

that duping doesn't copy class methods?
properly clone the Singleton pattern - did you know
def clone
  Singleton.__init__(super)
end