main
1# frozen_string_literal: true
2
3module Xml
4 module Kit
5 # This class is used primary for generating ID.
6 # https://www.w3.org/2001/XMLSchema.xsd
7 class Id
8 # Generate an ID that conforms to the XML Schema.
9 # https://www.w3.org/2001/XMLSchema.xsd
10 def self.generate
11 "_#{SecureRandom.uuid}"
12 end
13 end
14 end
15end