Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 171
- Log:
Initial import of Beast 0.9 from downloaded Tarball. Beast is a Ruby
On Rails based forum application. The original tarball came from the
following location:http://s3.amazonaws.com/beast-forum/beast-0.9.tar.gz
The forum post which announced this version's availability was at:
http://beast.caboo.se/forums/1/topics/446
- Author:
- rool
- Date:
- Fri Mar 02 15:51:55 +0000 2007
- Size:
- 567 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 exception_logger plugin.' |
9 | Rake::TestTask.new(:test) do |t| |
10 | t.libs << 'lib' |
11 | t.pattern = 'test/**/*_test.rb' |
12 | t.verbose = true |
13 | end |
14 | |
15 | desc 'Generate documentation for the exception_logger plugin.' |
16 | Rake::RDocTask.new(:rdoc) do |rdoc| |
17 | rdoc.rdoc_dir = 'rdoc' |
18 | rdoc.title = 'ExceptionLogger' |
19 | rdoc.options << '--line-numbers' << '--inline-source' |
20 | rdoc.rdoc_files.include('README') |
21 | rdoc.rdoc_files.include('lib/**/*.rb') |
22 | end |