forked from rack/rack-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rack-contrib.gemspec
111 lines (104 loc) · 3.59 KB
/
rack-contrib.gemspec
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.name = 'rack-contrib'
s.version = '1.1.0'
s.date = '2010-10-19'
s.description = "Contributed Rack Middleware and Utilities"
s.summary = "Contributed Rack Middleware and Utilities"
s.authors = ["rack-devel"]
s.email = "[email protected]"
# = MANIFEST =
s.files = %w[
AUTHORS
COPYING
README.rdoc
Rakefile
lib/rack/contrib.rb
lib/rack/contrib/accept_format.rb
lib/rack/contrib/access.rb
lib/rack/contrib/backstage.rb
lib/rack/contrib/bounce_favicon.rb
lib/rack/contrib/callbacks.rb
lib/rack/contrib/common_cookies.rb
lib/rack/contrib/config.rb
lib/rack/contrib/cookies.rb
lib/rack/contrib/csshttprequest.rb
lib/rack/contrib/deflect.rb
lib/rack/contrib/evil.rb
lib/rack/contrib/expectation_cascade.rb
lib/rack/contrib/garbagecollector.rb
lib/rack/contrib/host_meta.rb
lib/rack/contrib/jsonp.rb
lib/rack/contrib/lighttpd_script_name_fix.rb
lib/rack/contrib/locale.rb
lib/rack/contrib/mailexceptions.rb
lib/rack/contrib/nested_params.rb
lib/rack/contrib/not_found.rb
lib/rack/contrib/post_body_content_type_parser.rb
lib/rack/contrib/proctitle.rb
lib/rack/contrib/profiler.rb
lib/rack/contrib/relative_redirect.rb
lib/rack/contrib/response_cache.rb
lib/rack/contrib/response_headers.rb
lib/rack/contrib/route_exceptions.rb
lib/rack/contrib/runtime.rb
lib/rack/contrib/sendfile.rb
lib/rack/contrib/signals.rb
lib/rack/contrib/simple_endpoint.rb
lib/rack/contrib/static_cache.rb
lib/rack/contrib/time_zone.rb
lib/rack/contrib/try_static.rb
rack-contrib.gemspec
test/404.html
test/Maintenance.html
test/documents/existing.html
test/documents/index.htm
test/documents/index.html
test/documents/test
test/mail_settings.rb
test/spec_rack_accept_format.rb
test/spec_rack_access.rb
test/spec_rack_backstage.rb
test/spec_rack_callbacks.rb
test/spec_rack_common_cookies.rb
test/spec_rack_config.rb
test/spec_rack_contrib.rb
test/spec_rack_cookies.rb
test/spec_rack_csshttprequest.rb
test/spec_rack_deflect.rb
test/spec_rack_evil.rb
test/spec_rack_expectation_cascade.rb
test/spec_rack_garbagecollector.rb
test/spec_rack_host_meta.rb
test/spec_rack_jsonp.rb
test/spec_rack_lighttpd_script_name_fix.rb
test/spec_rack_mailexceptions.rb
test/spec_rack_nested_params.rb
test/spec_rack_not_found.rb
test/spec_rack_post_body_content_type_parser.rb
test/spec_rack_proctitle.rb
test/spec_rack_profiler.rb
test/spec_rack_relative_redirect.rb
test/spec_rack_response_cache.rb
test/spec_rack_response_headers.rb
test/spec_rack_runtime.rb
test/spec_rack_sendfile.rb
test/spec_rack_simple_endpoint.rb
test/spec_rack_static_cache.rb
test/spec_rack_try_static.rb
test/statics/test
]
# = MANIFEST =
s.test_files = s.files.select {|path| path =~ /^test\/spec_.*\.rb/}
s.extra_rdoc_files = %w[README.rdoc COPYING]
s.add_dependency 'rack', '>= 0.9.1'
s.add_development_dependency 'test-spec', '>= 0.9.0'
s.add_development_dependency 'tmail', '>= 1.2'
s.add_development_dependency 'json', '>= 1.1'
s.has_rdoc = true
s.homepage = "http://github.com/rack/rack-contrib/"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "rack-contrib", "--main", "README"]
s.require_paths = %w[lib]
s.rubygems_version = '1.1.1'
end