public
Description: Real HTTP Caching for Ruby Web Apps
Homepage: http://tomayko.com/src/rack-cache/
Clone URL: git://github.com/rtomayko/rack-cache.git
rtomayko (author)
Sat Jun 06 02:10:43 -0700 2009
commit  e51b1fbee7e4cf3e8a8348a0dc9f96d6b9373d5b
tree    d2cf53cd4e9acda46f91f1c6410856bc19a91cf8
parent  12b0de7eaa4801c97a57e6fb3c4bcf2d84056f64
rack-cache / rack-cache.gemspec
100644 71 lines (63 sloc) 1.877 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
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
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-cache'
  s.version = '0.5.1'
  s.date = '2009-06-06'
 
  s.description = "HTTP Caching for Rack"
  s.summary = "HTTP Caching for Rack"
 
  s.authors = ["Ryan Tomayko"]
  s.email = "r@tomayko.com"
 
  # = MANIFEST =
  s.files = %w[
CHANGES
COPYING
README
Rakefile
TODO
doc/configuration.markdown
doc/faq.markdown
doc/index.markdown
doc/layout.html.erb
doc/license.markdown
doc/rack-cache.css
doc/server.ru
doc/storage.markdown
example/sinatra/app.rb
example/sinatra/views/index.erb
lib/rack/cache.rb
lib/rack/cache/appengine.rb
lib/rack/cache/cachecontrol.rb
lib/rack/cache/context.rb
lib/rack/cache/entitystore.rb
lib/rack/cache/key.rb
lib/rack/cache/metastore.rb
lib/rack/cache/options.rb
lib/rack/cache/request.rb
lib/rack/cache/response.rb
lib/rack/cache/storage.rb
rack-cache.gemspec
test/cache_test.rb
test/cachecontrol_test.rb
test/context_test.rb
test/entitystore_test.rb
test/key_test.rb
test/metastore_test.rb
test/options_test.rb
test/pony.jpg
test/request_test.rb
test/response_test.rb
test/spec_setup.rb
test/storage_test.rb
]
  # = MANIFEST =
 
  s.test_files = s.files.select {|path| path =~ /^test\/.*_test.rb/}
 
  s.extra_rdoc_files = %w[README COPYING TODO CHANGES]
  s.add_dependency 'rack', '>= 0.4'
 
  s.has_rdoc = true
  s.homepage = "http://tomayko.com/src/rack-cache/"
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rack::Cache", "--main", "Rack::Cache"]
  s.require_paths = %w[lib]
  s.rubyforge_project = 'wink'
  s.rubygems_version = '1.1.1'
end