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 | |
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')
-rw-r--r-- | lib/tasks/deprecated.rake | 9 | ||||
-rw-r--r-- | lib/tasks/load_default_data.rake | 6 | ||||
-rw-r--r-- | lib/tasks/migrate_from_mantis.rake | 2 |
3 files changed, 15 insertions, 2 deletions
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
|