Problems using UUID (universally unique identifier)

P

Pablo Q.

Hi all,

I need to generate uuid numbers. I try to run this:

require_gem 'uuid'


10.times do
p UUID.new
end

But I'm receiving this:

183260c1-1ad1-012b-bfbf-001c23187f94
uuid.rb:1:Warning: require_gem is obsolete. Use gem instead.
UUID: Initialized UUID generator with sequence number 0xbfbf and MAC addres=
s
00-1C-23-18-7F-94

So I change require_gem with gem. Now I'm receiving this:

uuid.rb:3: uninitialized constant UUID (NameError)

Tool completed with exit code 1

What am I doing wrong?

--=20
Pablo Quir=F3s Sol=EDs
 
R

Rob Biedenharn

Just use require:

require 'uuid'

--
Avdi

Home: http://avdi.org
Developer Blog: http://avdi.org/devblog/
Twitter: http://twitter.com/avdi
Journal: http://avdi.livejournal.com

Or perhaps:

require 'rubygems'
require 'uuid'

If you ever needed a specific version of UUID, you could add a gem
statement:

require 'rubygems'
gem 'uuid', '~> 1.0.4"
require 'uuid'

The example '~> 1.0.4' will be true for all 1.0.x versions where x >=
4, but false for all 1.1 or higher versions (this is the "Pessimistic
Version Constraint" described at http://docs.rubygems.org/read/chapter/16#page74
if you want more).

-Rob


Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top