Skip to content

Instantly share code, notes, and snippets.

@Sihui
Last active October 22, 2017 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sihui/633e30b444c772094f173f951329eea7 to your computer and use it in GitHub Desktop.
Save Sihui/633e30b444c772094f173f951329eea7 to your computer and use it in GitHub Desktop.
Design Pattern: Singleton and YOU
class LazyYou
def self.instance
@instance ||= new
end
private_class_method :new
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment