我现在正在开发一个安装了引擎的 Rails 应用程序。
我认为编写 rake tast 代码是个好主意,它将从引擎复制迁移并运行 rake db:migrate。
但是,如果我在引擎阵列中仅使用一个引擎运行 rake 任务(见下文),则 rake tast 将从引擎复制迁移并迁移数据库。但是,如果我将另一个引擎添加到数组中,则 rake-Task 将不再工作。
namespace :work_in_progress do
desc 'Migrate the engines db tables'
task migrate_migrations_from_engines: :environment do
# The array with the available engines (just add the new engine here)
engines = [
'engine_one',
'engine_two'
]
puts 'Migrating migrations from engines...'
engines.each do |engine|
puts 'Copying migrations from ' + engine
Rake::Task[engine + ':install:migrations'].invoke
end
puts 'Migrating the database...'
Rake::Task['db:migrate'].invoke
puts 'Done...'
end
end
如何改进上面的脚本,以便我可以迁移多个引擎?是否有解决此问题的其他脚本(从引擎复制迁移并运行它们?)?
非常感谢!
菲利普