0
Started

Ruby Singleton using Standard Library Module Singleton

Ricardo Siqueira de Oliveira L 4 years ago updated by anonymous 4 years ago 1

I think to first example without Thread Safe could be use Standard Library Module Singleton

Example:

    require 'singleton'
    class Shop
      include Singleton
    end

    shop = Shop.instance
Started

Thanks, Ricardo! You might be totally right, I'll check it with the guy who helped me with Ruby examples.