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:
- 275 Bytes
1 | require File.join(File.dirname(__FILE__), 'config', 'boot') |
2 | |
3 | require 'rake' |
4 | require 'rake/testtask' |
5 | require 'rake/rdoctask' |
6 | |
7 | require 'tasks/rails' |
8 | |
9 | unless Rake::Task.task_defined? "radiant:release" |
10 | Dir["#{RADIANT_ROOT}/lib/tasks/**/*.rake"].sort.each { |ext| load ext } |
11 | end |