My application (in Rails) should provide two main tasks:
- create activity (for example post to Twitter) in given time in the future
- periodically crawler some site or download Tweets
I'm thinking about using DelayedJob gem or Whenever gem for cron tasks. Which is better in these situations?
Thanks for any advice.