Open FangioD opened 2 years ago
In utils.rb of the Ruby-template, def generate_uuid does not return a v4 UUID. It could be replaced by the function uuid of the module SecureRandom. This would ensure consistency over the different templates.
utils.rb
def generate_uuid
uuid
SecureRandom
Preferably, the UUID should be monotonic, so version 1 would probably also an option.
In
utils.rb
of the Ruby-template,def generate_uuid
does not return a v4 UUID. It could be replaced by the functionuuid
of the moduleSecureRandom
. This would ensure consistency over the different templates.