Duane,
since most people prolly manage their rails projects with subversion, do you think you could add an --svn option for the Rails generators?
I guess, this little edit in generator.rb should do the job by simply applying the --svn flag for all projects under subversion (testing for .svn folder in the app root):
svn_option = File.exist?("#{rails_root}/.svn") ? "--svn" : "" command = ""script/generate" #{generators[choice].name} # {svn_option} #{name} #{options}"
Thanks, Sebastian