I want to execute some task for a specific time period. Lets say I want to execute cronjob or some rake task between 6am to 9am for every half an hour. So script will get execute 6, 6:30, 7, 7:30... and last at 9.
Can you please give me some suggestion that how I can do this with Rails.
Don't tell me that schedule individual task for 6, 6:30, 7.. time period.
ANS
Simplest way I have found is to use whenever gem and adding cronjob time as below.
every '*/30 6-9 * * *' do
runner "Model.method"
end
One of the easiest ways to do this is via the Ruby gem called
whenever
. It provides you a really nice DSL (domain-specific language) you can use in order to do exactly what you want. I've used it before for server app deployments, and it's worked like a charm!Here is a link to the gem repository on Github:
https://github.com/javan/whenever
Here is also a great RailsCast you can watch on how to set it up in Rails: http://railscasts.com/episodes/164-cron-in-ruby
You should be able to do something like this:
You can adjust the initial range and the inner block to cover any range you want.
whenever
conveniently handles military time format (24hr clock), which makes this great to use.Hope that helps!