public
Description: Creates UUIDs version 1, 3, 4, and 5 in pure ruby.
Homepage:
Clone URL: git://github.com/spectra/ruby-uuid.git
name age message
file README Fri Feb 20 06:29:16 -0800 2009 Fix to correctly set the version of the UUID. [spectra]
file uuid.rb Tue Nov 17 10:37:58 -0800 2009 Fixing V1 for Ruby 1.9 [spectra]
README
I needed a uuid generator for Ruby. There's nothing wrong with current
implementations, I just wanted a simpler one, bundled in a single file (rather
than a gem), that could comply with RFC4122.

I found this charming one using Ruby Struct by Shyouhei Urabe (aka mput),
which is not online anymore (http://raa.ruby-lang.org/project/ruby-uuid/),
unfortunately. I had it in my HD, so I decided to put it back online.

All the credit really goes to mput. I just added a method to set the version
of UUID, since that was missing in the original code. I also intend to
implement version 2, which is also missing.