Skip to content

Instantly share code, notes, and snippets.

@martennilsson
Created February 9, 2012 12:19
Show Gist options
  • Save martennilsson/1779598 to your computer and use it in GitHub Desktop.
Save martennilsson/1779598 to your computer and use it in GitHub Desktop.
class Earth
include Singleton
end
a, b = Earth.instance, Earth.instance
a == b
#=> true
Earth.new
#=> NoMethodError: private method `new' called for Earth:Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment