Skip to content

Instantly share code, notes, and snippets.

@tacticiankerala
Created May 9, 2013 18:22
Show Gist options
  • Save tacticiankerala/5549437 to your computer and use it in GitHub Desktop.
Save tacticiankerala/5549437 to your computer and use it in GitHub Desktop.
Singleton class in ruby
require "singleton"
class Configuration
include Singleton
attr_accessor :number
def initialize
self.number = rand
end
end
Configuration.instance.number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment