Skip to content

Instantly share code, notes, and snippets.

@hectorsq
Created January 29, 2009 04:08
Show Gist options
  • Save hectorsq/54372 to your computer and use it in GitHub Desktop.
Save hectorsq/54372 to your computer and use it in GitHub Desktop.
hectorsq$ irb
>> require 'uuid'
=> true
>> UUID.generate
=> "ea4ab920-cfe7-012b-5530-0017f2f422ea"
>> UUID.generate :default
=> "ee19c970-cfe7-012b-5530-0017f2f422ea"
>> UUID.generate :urn
=> "urn:uuid:f3959e70-cfe7-012b-5530-0017f2f422ea"
>> UUID.generate :compact
=> "f6c3d280cfe7012b55300017f2f422ea"
>> UUID.generate(:compact).upcase
=> "0C00E4E0CFE8012B55300017F2F422EA"
>> exit
hectorsq$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment