Сижу, познаю Ruby, увидел одиночку
class Singleton
class << self
def new
unless @instance
#some action
end
@instance ||= self
end
end
endВлюбился в Ruby ещё больше
Сижу, познаю Ruby, увидел одиночку
class Singleton
class << self
def new
unless @instance
#some action
end
@instance ||= self
end
end
end