I updated foreverb with a scheduler support for repetitive tasks.
every 3.seconds do
puts "Every three seconds, long task"
sleep 10
end
every 1.day, :at => "18:30" do
puts "Every day at 18:30"
end
Full example is here
Check updated docs. Feel free to fork it and apply your changes.