Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

singleton in ruby (See related posts)

// simple singleton

class Singleton 
  private_class_method :new
  @@singleton = nil
  
  def Singleton.create
    @@singleton = new unless @@singleton
    @@singleton
  end
end

Comments on this post

remvee posts on Oct 07, 2006 at 17:23
See http://ruby-doc.org/stdlib/libdoc/singleton/rdoc/index.html

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts