public
Description: Allows Rails controllers to use HTTP cache specifications easily by declaring which resources should be cached at the class level
Homepage: http://blog.plataformatec.com.br/
Clone URL: git://github.com/josevalim/easy_http_cache.git
Click here to lend your support to: easy_http_cache and make a donation at www.pledgie.com !
easy_http_cache / easy_http_cache.gemspec
100644 24 lines (23 sloc) 0.7 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
Gem::Specification.new do |s|
  s.name = "easy_http_cache"
  s.version = "2.1"
  s.date = "2009-02-04"
  s.summary = "Allows Rails applications to use HTTP cache specifications easily."
  s.email = "jose.valim@gmail.com"
  s.homepage = "http://github.com/josevalim/easy_http_cache"
  s.description = "Allows Rails applications to use HTTP cache specifications easily."
  s.has_rdoc = true
  s.authors = [ "José Valim" ]
  s.files = [
    "MIT-LICENSE",
"README",
"Rakefile",
"lib/easy_http_cache.rb",
    "test/easy_http_cache_test.rb"
  ]
  s.test_files = [
    "test/easy_http_cache_test.rb"
  ]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
end