我有一个 rake 任务,每隔几个小时就会更改主页上的数据。我已经对其进行了测试,它在开发中运行良好。但它在生产中不起作用。我必须做什么才能获得我想看到的变化?我应该添加一个重新启动服务器的命令吗?这会让服务器承认更改吗?有没有更聪明的方法来做到这一点?
耙子任务如下。它将由 heroku 的调度程序插件运行,因此它当前位于 lib/tasks/scheduler.rake 文件中。
desc 'changes the meta tags'
task :mixup_meta_tags => :environment do
regex = /@meta_tag/
file = File.open('app/controllers/site_controller.rb', 'r')
lines = []
file.each_line do |line|
(line =~ regex) ? (lines << replace_line(line)) : (lines << line)
end
file.close
file = File.open('app/controllers/site_controller.rb', 'w')
lines.each{|line| file.write line}
file.close
end
def replace_line(line)
meta_tags = MetaTag.all.map { |tag| tag["tag"] }
new_tag = meta_tags.sample(1)[0]
line = " @meta_tag = \"#{new_tag}\" \n" # added the newline
end