3

我现在正在开发一个安装了引擎的 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

如何改进上面的脚本,以便我可以迁移多个引擎?是否有解决此问题的其他脚本(从引擎复制迁移并运行它们?)?

非常感谢!

菲利普

4

1 回答 1

5

您必须运行 rake 任务来安装迁移,然后运行它们。试试这个代码来执行任务:

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
      `bundle exec rake #{engine}:install:migrations`      
    end
    puts 'Migrating the database...'
    `bundle exec rake db:migrate`      
    puts 'Done...'
  end

end
于 2013-08-22T18:10:47.953 回答