How do I run all rake tasks?
问题 Have just installed whenever gem https://github.com/javan/whenever to run my rake tasks, which are nokogiri / feedzilla dependent scraping tasks. eg my tasks are called grab_bbc, grab_guardian etc My question - as I update my site, I keep add more tasks to scheduler.rake. What should I write in my config/schedule.rb to make all rake tasks run, no matter what they are called? Would something like this work? every 12.hours do rake:task.each do |task| runner task end end Am new to Cron, using