josh / multimap

Ruby multimap implementation

This URL has Read+Write access

multimap / multimap.gemspec
100644 23 lines (22 sloc) 0.63 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
  s.name = 'multimap'
  s.version = '1.0.1'
  s.date = '2009-11-07'
  s.summary = 'Ruby implementation of multimap'
  s.description = <<-EOS
Multimap includes a Ruby multimap implementation
EOS
  s.email = 'josh@joshpeek.com'
  s.homepage = 'http://github.com/josh/multimap'
  s.rubyforge_project = 'multimap'
  s.has_rdoc = true
  s.authors = ["Joshua Peek"]
  s.files = [
    "ext/nested_multimap_ext.c",
    "lib/multimap.rb",
    "lib/multiset.rb",
    "lib/nested_multimap.rb"
  ]
  s.extensions = ["ext/extconf.rb"]
  s.extra_rdoc_files = %w[README.rdoc MIT-LICENSE]
end