Chris@16: namespace :redmine do Chris@16: namespace :plugins do Chris@16: namespace :redmine_checkout do Chris@16: desc "Sets all repositories to inherit the default setting for the checkout URL." Chris@16: task :set_default => :environment do Chris@16: Repository.all.each{|r| r.update_attributes(:checkout_overwrite => "0")} Chris@16: end Chris@16: end Chris@16: end Chris@16: end