Forum: Ruby GUID

Posted by J. mp (lerias)
on 2007-02-26 21:57
Hi folks,

This is an easy one, but I can't find a way to do it.
It's there, in ruby, any easy means to generate an GUID (Global Unique
Identifier)?

Thank,
Posted by unknown (Guest)
on 2007-02-26 22:02
(Received via mailing list)
On Tue, 27 Feb 2007, J. mp wrote:

> Hi folks,
>
> This is an easy one, but I can't find a way to do it.
> It's there, in ruby, any easy means to generate an GUID (Global Unique
> Identifier)?
>
> Thank,

http://www.google.com/search?source=ig&hl=en&q=uui...

-a
Posted by Jan Svitok (Guest)
on 2007-02-26 22:05
(Received via mailing list)
On 2/26/07, J. mp <joaomiguel.pereira@gmail.com> wrote:
> Hi folks,
>
> This is an easy one, but I can't find a way to do it.
> It's there, in ruby, any easy means to generate an GUID (Global Unique
> Identifier)?
>
> Thank,

try either
http://raa.ruby-lang.org/project/ruby-guid/ (windows&unix)

or my patch at (win only):
http://rubyforge.org/tracker/?func=detail&aid=6237...
Posted by Assaf (Guest)
on 2007-02-27 19:21
(Received via mailing list)
On Feb 26, 12:57 pm, "J. mp" <joaomiguel.pere...@gmail.com> wrote:
> Hi folks,
>
> This is an easy one, but I can't find a way to do it.
> It's there, in ruby, any easy means to generate an GUID (Global Unique
> Identifier)?

gem install uuid

require_gem 'uuid'
puts UUID.new


The project page is here:
http://rubyforge.org/projects/reliable-msg

Documentation:
http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Rub...

Assaf

http://labnotes.org
Posted by Tim Hunter (timhunter)
on 2007-02-27 19:29
Assaf wrote:
> require_gem 'uuid'
> puts UUID.new

"require_gem" is obsolete, use "gem" if you need to specify a specific 
version of a gem. Mostly you should just use plain "require" to load a 
library that was installed by RubyGems.
Posted by Assaf (Guest)
on 2007-03-02 21:25
(Received via mailing list)
On Feb 27, 10:29 am, Tim Hunter <rmag...@gmail.com> wrote:
> Assaf wrote:
> > require_gem 'uuid'
> > puts UUID.new
>
> "require_gem" is obsolete, use "gem" if you need to specify a specific
> version of a gem. Mostly you should just use plain "require" to load a
> library that was installed by RubyGems.

I should know that :-)

I guess it's time to replace the old docs I was copying & pasting
from.

Assaf
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.