insert the following code to your Rakefile

# Monkey patch Rake :
Rake::TaskManager.class_eval do
  def remove_task(task_name)
    @tasks.delete(task_name.to_s)
  end
end

before the line require 'tasks/rails'

The create a new file test.rake under Libs/tasks :


Rake.application.remove_task 'db:test:prepare'
namespace :db do
  namespace :test do
    task :prepare do |t|
      puts "\nData in the test database will not be deleted !!!!\n"
    end
  end
end

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to