0

在运行我构建的 rake 任务时,rails 中是否有任何方法可以自动调用方法,例如以前?

假设我们有

namespace :migrate do

  def before
    # do this before all tasks 
  end

  desc 'migrate authors from legacy database'
  task :authors => :environment do
    # some code here
  end

end

我希望每次运行任务时都运行 before 方法。

4

1 回答 1

0

看看这是否有帮助:http ://www.rubyflow.com/items/4104

于 2012-06-08T08:07:32.100 回答