private Method

SingletonClassMethods.inherited(sub_klass)

ensure that the Singleton pattern is properly inherited

Source Code

# File singleton.rb, line 137
def inherited(sub_klass)
  super
  Singleton.__init__(sub_klass)
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.