Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
identifier-uuid / lib / identifier / uuid / pattern.rb
Size: Mime:
module Identifier
  module UUID
    module Pattern
      TYPE_4 = %r{
        [a-f0-9]{8}          # abcdef01
        -                    #         -
        [a-f0-9]{4}          #          abcd
        -                    #              -
        4[a-f0-9]{3}         #               4abc
        -                    #                   -
        [89ab][a-f0-9]{3}    #                    8abc
        -                    #                        -
        [a-f0-9]{12}         #                         abcdef012345
      }xi
    end
  end
end