File: uuid.gemspec

package info (click to toggle)
ruby-uuid 2.3.8%2Bdebian-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 160 kB
  • ctags: 90
  • sloc: ruby: 386; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 786 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
  s.name = 'uuid'
  s.version = '2.3.8'
  s.summary = "UUID generator"
  s.description = <<-EOF
UUID generator for producing universally unique identifiers based on RFC 4122
(http://www.ietf.org/rfc/rfc4122.txt).
EOF

  s.authors << 'Assaf Arkin' << 'Eric Hodel'
  s.email = 'assaf@labnotes.org'
  s.homepage = 'http://github.com/assaf/uuid'

  s.files = Dir['{bin,test,lib,docs}/**/*'] + ['README.rdoc', 'MIT-LICENSE', 'Rakefile', 'CHANGELOG', 'uuid.gemspec']
  s.executables = "uuid"
  
  s.rdoc_options << '--main' << 'README.rdoc' << '--title' <<  'UUID generator' << '--line-numbers'
                       '--webcvs' << 'http://github.com/assaf/uuid'
  s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE']

  s.add_dependency 'macaddr', ['~>1.0']
end