Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 381
- Log:
Radiant is now packaged as a Gem - see Changeset #373, Changeset #374,
Changeset #375, Changeset #376, Changeset #377, Changeset #378,
Changeset #379 and Changeset #380. The application part of Radiant is
now mostly empty; it exists to provide a structure which hooks into the
gem and which provides a framework for extensions. Included in this big
changeset are all the deletions, additions and changes needed to go from
the old ROOL customised Radiant to a new ROOL customised Radiant, which
includes several custom extensions adapted from the old Radiant
modifications and requires Radiant 0.9.1 to be installed as a gem.
- Author:
- rool
- Date:
- Mon Mar 21 14:01:18 +0000 2011
- Size:
- 647 Bytes
- Properties:
- Property svn:executable is set
1 | #!/usr/bin/env ruby |
2 | require File.dirname(__FILE__) + '/../config/boot' |
3 | require "#{RAILS_ROOT}/config/environment" |
4 | require 'rails_generator' |
5 | require 'rails_generator/scripts/generate' |
6 | |
7 | class Rails::Generator::Base |
8 | def self.use_application_sources! |
9 | reset_sources |
10 | sources << Rails::Generator::PathSource.new(:builtin, "#{RADIANT_ROOT}/lib/generators") |
11 | plugins_path = File.expand_path(File.join(RAILS_ROOT, %w(vendor plugins))) |
12 | sources << Rails::Generator::PathSource.new(:"plugins (vendor/plugins)", "#{plugins_path}/*/**/{,rails_}generators") |
13 | end |
14 | end |
15 | |
16 | Rails::Generator::Base.use_application_sources! |
17 | |
18 | require 'commands/generate' |