├── .gitignore ├── CONTRIBUTORS ├── COPYING ├── Emakefile ├── Makefile ├── README ├── ebin └── .empty ├── src ├── uuid.app.src ├── uuid.erl └── uuid.hrl └── test └── uuid_tests.erl /.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | ebin/*.app 3 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/COPYING -------------------------------------------------------------------------------- /Emakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/Emakefile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/README -------------------------------------------------------------------------------- /ebin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uuid.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/src/uuid.app.src -------------------------------------------------------------------------------- /src/uuid.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/src/uuid.erl -------------------------------------------------------------------------------- /src/uuid.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/src/uuid.hrl -------------------------------------------------------------------------------- /test/uuid_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avtobiff/erlang-uuid/HEAD/test/uuid_tests.erl --------------------------------------------------------------------------------