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:
- 565 Bytes
1 | require 'rake' |
2 | require 'rake/testtask' |
3 | require 'rake/rdoctask' |
4 | |
5 | desc 'Default: run unit tests.' |
6 | task :default => :test |
7 | |
8 | desc 'Test the rails_xss plugin.' |
9 | Rake::TestTask.new(:test) do |t| |
10 | t.libs << 'lib' |
11 | t.libs << 'test' |
12 | t.pattern = 'test/**/*_test.rb' |
13 | t.verbose = true |
14 | end |
15 | |
16 | desc 'Generate documentation for the rails_xss plugin.' |
17 | Rake::RDocTask.new(:rdoc) do |rdoc| |
18 | rdoc.rdoc_dir = 'rdoc' |
19 | rdoc.title = 'RailsXss' |
20 | rdoc.options << '--line-numbers' << '--inline-source' |
21 | rdoc.rdoc_files.include('README') |
22 | rdoc.rdoc_files.include('lib/**/*.rb') |
23 | end |