Skip to content

Instantly share code, notes, and snippets.

@nafidurmus
Created July 25, 2019 21:19
Show Gist options
  • Save nafidurmus/28c39cbc49a2e87cbe14210340c86405 to your computer and use it in GitHub Desktop.
Save nafidurmus/28c39cbc49a2e87cbe14210340c86405 to your computer and use it in GitHub Desktop.
require 'singleton'
class SingletonObject
include Singleton
attr_accessor :counter
def initialize
@counter = 0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment