I have problem that is really easily solved with Guids.
In particular, for a password reset workflow, I would like to send a Guid token to a user\'s email and have
Google yields the following Ruby library:
http://raa.ruby-lang.org/project/ruby-guid/
Also, over at http://www.ruby-forum.com/topic/99262 they say you can install a gem (execute gem uuid on the command line to install it) and then do
gem 'uuid'
puts UUID.new
in your code to see a new UUID.
(Hint: I Googled for guid ruby)