module EventMachine::UuidGenerator
Factored out so we can substitute other implementations here if desired, such as the one in ActiveRBAC. @private
Public Class Methods
generate()
click to toggle source
# File lib/em/pure_ruby.rb, line 246 def self.generate @ix ||= 0 @ix += 1 end