9e909d5be3
Update Bundler to 1.0.15. Update Rails to 2.3.12. Update rails_xss plugin. The latter two were the source of a considerable amount of grief, as rails_xss is now MUCH stricter about what string methods can be used. Also made it possible to use rake 0.9.x with Instiki. But you probably REALLY want to use ruby bundle exec rake ... instead of just saying rake ....
18 lines
430 B
Ruby
Executable file
18 lines
430 B
Ruby
Executable file
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
# for example lib/tasks/switchtower.rake, and they will automatically be available to Rake.
|
|
|
|
require File.join(File.dirname(__FILE__), 'config', 'boot')
|
|
|
|
require 'rake'
|
|
class Rails::Application
|
|
include Rake::DSL if defined?(Rake::DSL)
|
|
end
|
|
require 'rake/testtask'
|
|
begin
|
|
require 'rdoc/task'
|
|
rescue LoadError
|
|
require 'rake/rdoctask'
|
|
end
|
|
|
|
require 'tasks/rails'
|