Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 373
- Log:
Initial import of Radiant 0.9.1, which is now packaged as a gem. This is an
import of the tagged 0.9.1 source checked out from GitHub, which isn't quite
the same as the gem distribution - but it doesn't seem to be available in an
archived form and the installed gem already has modifications, so this is
the closest I can get.
- Author:
- rool
- Date:
- Mon Mar 21 13:40:05 +0000 2011
- Size:
- 1843 Bytes
1 | Gem::Specification.new do |s| |
2 | s.specification_version = 2 if s.respond_to? :specification_version= |
3 | s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= |
4 | |
5 | s.name = 'rack-cache' |
6 | s.version = '0.4' |
7 | s.date = '2009-03-16' |
8 | |
9 | s.description = "HTTP Caching for Rack" |
10 | s.summary = "HTTP Caching for Rack" |
11 | |
12 | s.authors = ["Ryan Tomayko"] |
13 | s.email = "r@tomayko.com" |
14 | |
15 | # = MANIFEST = |
16 | s.files = %w[ |
17 | CHANGES |
18 | COPYING |
19 | README |
20 | Rakefile |
21 | TODO |
22 | doc/configuration.markdown |
23 | doc/faq.markdown |
24 | doc/index.markdown |
25 | doc/layout.html.erb |
26 | doc/license.markdown |
27 | doc/rack-cache.css |
28 | doc/server.ru |
29 | doc/storage.markdown |
30 | example/sinatra/app.rb |
31 | example/sinatra/views/index.erb |
32 | lib/rack/cache.rb |
33 | lib/rack/cache/cachecontrol.rb |
34 | lib/rack/cache/context.rb |
35 | lib/rack/cache/entitystore.rb |
36 | lib/rack/cache/key.rb |
37 | lib/rack/cache/metastore.rb |
38 | lib/rack/cache/options.rb |
39 | lib/rack/cache/request.rb |
40 | lib/rack/cache/response.rb |
41 | lib/rack/cache/storage.rb |
42 | rack-cache.gemspec |
43 | test/cache_test.rb |
44 | test/cachecontrol_test.rb |
45 | test/context_test.rb |
46 | test/entitystore_test.rb |
47 | test/key_test.rb |
48 | test/metastore_test.rb |
49 | test/options_test.rb |
50 | test/pony.jpg |
51 | test/request_test.rb |
52 | test/response_test.rb |
53 | test/spec_setup.rb |
54 | test/storage_test.rb |
55 | ] |
56 | # = MANIFEST = |
57 | |
58 | s.test_files = s.files.select {|path| path =~ /^test\/.*_test.rb/} |
59 | |
60 | s.extra_rdoc_files = %w[README COPYING TODO CHANGES] |
61 | s.add_dependency 'rack', '~> 0.4' |
62 | |
63 | s.has_rdoc = true |
64 | s.homepage = "http://tomayko.com/src/rack-cache/" |
65 | s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rack::Cache", "--main", "Rack::Cache"] |
66 | s.require_paths = %w[lib] |
67 | s.rubyforge_project = 'wink' |
68 | s.rubygems_version = '1.1.1' |
69 | end |