Commit 32269cf9cb664d18140bef2e9a53ad1c9c6f6e27

fixed placement for UUID size constants
  
137137 def self.sha1_uuid(oid)
138138 ::UUID.sha1_create(UUID_OID_NAMESPACE, oid).to_s
139139 end
140
141 RAW_UUID_SIZE = random_uuid_raw.size
142 FORMATTED_UUID_SIZE = random_uuid.size
143140
144141 class ::String
145142 # Convert to raw (16 bytes) string (self can be already raw or formatted).
150150 end
151151
152152 end
153end
154
155module StrokeDB::Util
156 RAW_UUID_SIZE = random_uuid_raw.size
157 FORMATTED_UUID_SIZE = random_uuid.size
153158end