-
Notifications
You must be signed in to change notification settings - Fork 123
/
rack-cache.gemspec
24 lines (19 loc) · 1009 Bytes
/
rack-cache.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
Gem::Specification.new 'rack-cache', '1.13.0' do |s|
s.summary = "HTTP Caching for Rack"
s.description = "Rack::Cache is suitable as a quick drop-in component to enable HTTP caching for Rack-based applications that produce freshness (Expires, Cache-Control) and/or validation (Last-Modified, ETag) information."
s.required_ruby_version = '>= 2.3.0'
s.authors = ["Ryan Tomayko"]
s.email = "[email protected]"
s.files = `git ls-files lib/ README.md MIT-LICENSE`.split("\n")
s.extra_rdoc_files = %w[README.md MIT-LICENSE CHANGES]
s.add_dependency 'rack', '>= 0.4'
s.add_development_dependency 'maxitest'
s.add_development_dependency 'memcached'
s.add_development_dependency 'mocha'
s.add_development_dependency 'dalli'
s.add_development_dependency 'bump'
s.add_development_dependency 'rake'
s.license = "MIT"
s.homepage = "https://github.com/rtomayko/rack-cache"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rack::Cache", "--main", "Rack::Cache"]
end