josh / rack-mount

Stackable dynamic tree based Rack router

This URL has Read+Write access

rack-mount / rack-mount.gemspec
100644 44 lines (43 sloc) 1.558 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Gem::Specification.new do |s|
  s.name = 'rack-mount'
  s.version = '0.0.1'
  s.date = '2009-10-21'
  s.summary = 'Stackable dynamic tree based Rack router'
  s.description = s.summary
  s.email = 'josh@joshpeek.com'
  s.homepage = 'http://github.com/josh/rack-mount'
  s.rubyforge_project = 'rack-mount'
  s.has_rdoc = true
  s.authors = ['Joshua Peek']
  s.files = [
    'lib/rack/mount/analysis/frequency.rb',
    'lib/rack/mount/analysis/histogram.rb',
    'lib/rack/mount/analysis/splitting.rb',
    'lib/rack/mount/const.rb',
    'lib/rack/mount/exceptions.rb',
    'lib/rack/mount/generatable_regexp.rb',
    'lib/rack/mount/generation/route.rb',
    'lib/rack/mount/generation/route_set.rb',
    'lib/rack/mount/meta_method.rb',
    'lib/rack/mount/mixover.rb',
    'lib/rack/mount/multimap.rb',
    'lib/rack/mount/prefix.rb',
    'lib/rack/mount/recognition/code_generation.rb',
    'lib/rack/mount/recognition/route.rb',
    'lib/rack/mount/recognition/route_set.rb',
    'lib/rack/mount/regexp_with_named_groups.rb',
    'lib/rack/mount/route.rb',
    'lib/rack/mount/route_set.rb',
    'lib/rack/mount/strexp/parser.rb',
    'lib/rack/mount/strexp/tokenizer.rb',
    'lib/rack/mount/strexp.rb',
    'lib/rack/mount/utils.rb',
    'lib/rack/mount/vendor/multimap/multimap.rb',
    'lib/rack/mount/vendor/multimap/multiset.rb',
    'lib/rack/mount/vendor/multimap/nested_multimap.rb',
    'lib/rack/mount.rb'
  ]
  s.extra_rdoc_files = %w[README.rdoc LICENSE]
  s.require_paths = %w[lib]
  s.add_dependency 'rack', '>= 1.0.0'
end