Module: CloneKit::IdGenerators::Uuid

Defined in:
lib/clone_kit/id_generators/uuid.rb

Class Method Summary collapse

Class Method Details

.from_string(val) ⇒ Object



10
11
12
# File 'lib/clone_kit/id_generators/uuid.rb', line 10

def self.from_string(val)
  val
end

.nextObject



6
7
8
# File 'lib/clone_kit/id_generators/uuid.rb', line 6

def self.next
  SecureRandom.uuid
end