This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
2013-11-21 08:08:42 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
namespace :synchronize do
|
|
|
|
desc "synchronize tasks"
|
|
|
|
task :data => :environment do
|
2013-11-21 09:20:47 +00:00
|
|
|
p Admin::ImportDataController.new.sync_book_data_auto
|
2013-11-21 08:08:42 +00:00
|
|
|
puts "Book Data Synchronization Complete"
|
2013-11-21 09:20:47 +00:00
|
|
|
p Admin::ImportDataController.new.sync_journal_paper_data_auto
|
2013-11-21 08:08:42 +00:00
|
|
|
puts "Journal Paper Data Synchronization Complete"
|
2013-11-21 09:20:47 +00:00
|
|
|
p Admin::ImportDataController.new.sync_conference_data_auto
|
2013-11-21 08:08:42 +00:00
|
|
|
puts "Conference Data Synchronization Complete"
|
|
|
|
end
|
|
|
|
end
|