public
Description: Generates universally unique identifiers (UUIDs) for use in distributed applications.
Homepage:
Clone URL: git://github.com/assaf/uuid.git
Click here to lend your support to: uuid and make a donation at www.pledgie.com !
Takeshi Abe (author)
Wed Jul 08 19:50:59 -0700 2009
assaf (committer)
Wed Jul 08 23:13:28 -0700 2009
uuid / uuid.gemspec
100644 23 lines (19 sloc) 0.863 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
spec = Gem::Specification.new do |spec|
  spec.name = 'uuid'
  spec.version = '2.0.2'
  spec.summary = "UUID generator"
  spec.description = <<-EOF
UUID generator for producing universally unique identifiers based on RFC 4122
(http://www.ietf.org/rfc/rfc4122.txt).
EOF
 
  spec.authors << 'Assaf Arkin' << 'Eric Hodel'
  spec.email = 'assaf@labnotes.org'
  spec.homepage = 'http://github.com/assaf/uuid'
  spec.rubyforge_project = 'reliable-msg'
 
  spec.files = Dir['{bin,test,lib,docs}/**/*', 'README.rdoc', 'MIT-LICENSE', 'Rakefile', 'CHANGELOG', 'uuid.gemspec']
  spec.has_rdoc = true
  spec.rdoc_options << '--main' << 'README.rdoc' << '--title' << 'UUID generator' << '--line-numbers'
                       '--webcvs' << 'http://github.com/assaf/uuid'
  spec.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE']
 
  spec.add_dependency 'macaddr', ['~>1.0']
end