Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 344
- Log:
Massive changeset which brings the old, ROOL customised Instiki
version up to date, but without any ROOL customisations in this
latest checked-in version (which is 0.19.1). This is deliberate,
so that it's easy to see the changes made for the ROOL version
in a subsequent changeset. The 'app/views/shared' directory is not
part of Instiki but is kept to maintain the change history with
updated ROOL customisations, some of which involve the same files
in that same directory.
- Author:
- rool
- Date:
- Sat Mar 19 19:52:13 +0000 2011
- Size:
- 1360 Bytes
1 | Gem::Specification.new do |s| |
2 | s.name = "rack" |
3 | s.version = "1.2.1" |
4 | s.platform = Gem::Platform::RUBY |
5 | s.summary = "a modular Ruby webserver interface" |
6 | |
7 | s.description = <<-EOF |
8 | Rack provides minimal, modular and adaptable interface for developing |
9 | web applications in Ruby. By wrapping HTTP requests and responses in |
10 | the simplest way possible, it unifies and distills the API for web |
11 | servers, web frameworks, and software in between (the so-called |
12 | middleware) into a single method call. |
13 | |
14 | Also see http://rack.rubyforge.org. |
15 | EOF |
16 | |
17 | s.files = Dir['{bin/*,contrib/*,example/*,lib/**/*,test/**/*}'] + |
18 | %w(COPYING KNOWN-ISSUES rack.gemspec README SPEC) |
19 | s.bindir = 'bin' |
20 | s.executables << 'rackup' |
21 | s.require_path = 'lib' |
22 | s.has_rdoc = true |
23 | s.extra_rdoc_files = ['README', 'SPEC', 'KNOWN-ISSUES'] |
24 | s.test_files = Dir['test/spec_*.rb'] |
25 | |
26 | s.author = 'Christian Neukirchen' |
27 | s.email = 'chneukirchen@gmail.com' |
28 | s.homepage = 'http://rack.rubyforge.org' |
29 | s.rubyforge_project = 'rack' |
30 | |
31 | s.add_development_dependency 'bacon' |
32 | s.add_development_dependency 'rake' |
33 | |
34 | s.add_development_dependency 'fcgi' |
35 | s.add_development_dependency 'memcache-client' |
36 | s.add_development_dependency 'mongrel' |
37 | s.add_development_dependency 'thin' |
38 | end |