Module: EventMachine::UuidGenerator

Defined in:
lib/em/pure_ruby.rb

Overview

Factored out so we can substitute other implementations here if desired, such as the one in ActiveRBAC.

Class Method Summary collapse

Class Method Details

.generateObject



446
447
448
449
# File 'lib/em/pure_ruby.rb', line 446

def self.generate
  @ix ||= 0
  @ix += 1
end