From e76d153064ee048004b732136b3db6d36c17e1af Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 2 Sep 2007 08:08:10 +0000 Subject: [PATCH] Added namespace for Redmine specific rake tasks. git-svn-id: http://redmine.rubyforge.org/svn/trunk@691 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- doc/INSTALL | 2 +- lib/tasks/deprecated.rake | 9 +++++++++ lib/tasks/load_default_data.rake | 6 ++++-- lib/tasks/migrate_from_mantis.rake | 2 ++ 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 lib/tasks/deprecated.rake diff --git a/doc/INSTALL b/doc/INSTALL index e653acb1c..61d85f1ca 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -37,7 +37,7 @@ Supported databases: It will create tables and an administrator account. 5. Insert default configuration data in database: - rake load_default_data RAILS_ENV="production" + rake redmine:load_default_data RAILS_ENV="production" It will load default roles, trackers, statuses, workflows and enumerations. This step is optional (but recommended), as you can define your own configuration from sratch. diff --git a/lib/tasks/deprecated.rake b/lib/tasks/deprecated.rake new file mode 100644 index 000000000..dca43ddc7 --- /dev/null +++ b/lib/tasks/deprecated.rake @@ -0,0 +1,9 @@ +def deprecated_task(name, new_name) + task name=>new_name do + $stderr.puts "\nNote: The rake task #{name} has been deprecated, please use the replacement version #{new_name}" + end +end + +deprecated_task :load_default_data, "redmine:load_default_data" +deprecated_task :migrate_from_mantis, "redmine:migrate_from_mantis" +deprecated_task :migrate_from_trac, "redmine:migrate_from_trac" diff --git a/lib/tasks/load_default_data.rake b/lib/tasks/load_default_data.rake index e59c3c5fe..21ea238b4 100644 --- a/lib/tasks/load_default_data.rake +++ b/lib/tasks/load_default_data.rake @@ -1,5 +1,6 @@ -desc 'Load default configuration data' +desc 'Load Redmine default configuration data' +namespace :redmine do task :load_default_data => :environment do include GLoc set_language_if_valid('en') @@ -163,4 +164,5 @@ rescue => error puts "Error: " + error puts "Default configuration data can't be loaded." end -end \ No newline at end of file +end +end 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 -- 2.39.5