explicit require in rake file

This commit is contained in:
Raphael 2011-01-10 18:48:12 -08:00
parent b9afd6012c
commit 6ba587155a

View file

@ -2,7 +2,9 @@
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
Dir.glob(File.join(Rails.root, 'lib', 'data_conversion', '*.rb')).each { |f| require f } require File.join(Rails.root, 'lib', 'data_conversion', 'base')
require File.join(Rails.root, 'lib', 'data_conversion', 'export_from_mongo')
require File.join(Rails.root, 'lib', 'data_conversion', 'import_to_mysql')
namespace :migrations do namespace :migrations do
desc 'export data for mysql import' desc 'export data for mysql import'