forked from zombocom/rack-timeout
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrack-timeout.gemspec
More file actions
20 lines (18 loc) · 806 Bytes
/
rack-timeout.gemspec
File metadata and controls
20 lines (18 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |spec|
spec.name = "rack-timeout"
spec.summary = "Abort requests that are taking too long"
spec.description = "Rack middleware which aborts requests that have been running for longer than a specified timeout. This fork allows filtering by request paths."
spec.version = "0.5.1"
spec.homepage = "https://github.com/mkrl/rack-timeout"
spec.author = "Caio Chassot"
spec.email = "caio@heroku.com"
spec.files = Dir[*%w( MIT-LICENSE CHANGELOG README.markdown lib/**/* doc/**/* )]
spec.license = "MIT"
spec.test_files = Dir.glob("test/**/*").concat([
"Gemfile",
"Rakefile"
])
spec.add_development_dependency("rake")
spec.add_development_dependency("rack-test")
spec.add_development_dependency("test-unit")
end