mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 13:06:25 +10:00
7 lines
101 B
Ruby
7 lines
101 B
Ruby
require 'uuidtools'
|
|
|
|
module UuidGenerator
|
|
def uuid
|
|
UUIDTools::UUID.random_create.to_s
|
|
end
|
|
end |