作成した rake タスクを実行するときに、以前のようにメソッドを自動的に呼び出す方法はレールにありますか?
私たちが持っているとしましょう
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 メソッドを実行したい。