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



457
458
459
460
# File 'lib/em/pure_ruby.rb', line 457

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