diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-02 08:08:10 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-02 08:08:10 +0000 |
commit | e76d153064ee048004b732136b3db6d36c17e1af (patch) | |
tree | db3f26cf6a748837d978167d3a3b2cce966bedad /lib/tasks/migrate_from_mantis.rake | |
parent | 521f4a6ddbc9eebe9ee6347a677f8d1a0ea6790f (diff) | |
download | redmine-e76d153064ee048004b732136b3db6d36c17e1af.tar.gz redmine-e76d153064ee048004b732136b3db6d36c17e1af.zip |
Added namespace for Redmine specific rake tasks.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@691 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/tasks/migrate_from_mantis.rake')
-rw-r--r-- | lib/tasks/migrate_from_mantis.rake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tasks/migrate_from_mantis.rake b/lib/tasks/migrate_from_mantis.rake index e7c1afd98..fff668b64 100644 --- a/lib/tasks/migrate_from_mantis.rake +++ b/lib/tasks/migrate_from_mantis.rake @@ -21,6 +21,7 @@ require 'active_record' require 'iconv'
require 'pp'
+namespace :redmine do
task :migrate_from_mantis => :environment do
module MantisMigrate
@@ -483,3 +484,4 @@ task :migrate_from_mantis => :environment do MantisMigrate.establish_connection db_params
MantisMigrate.migrate
end
+end
|