Update comments about scheduling

This commit is contained in:
Eryn Wells 2015-05-18 19:01:34 -07:00
parent c60a936f99
commit af534ed0cb

View file

@ -37,12 +37,12 @@ class ERWEbooksBot < Ebooks::Bot
@model_path ||= "model/#{original}.model" @model_path ||= "model/#{original}.model"
@archive_path ||= "model/#{original}.json" @archive_path ||= "model/#{original}.json"
# Post a tweet every hour # Post a tweet every two hours
scheduler.every '2h' do scheduler.every '2h' do
tweet(model.make_statement) tweet(model.make_statement)
end end
# Every day at 5am update the corpus # Update the corpus every day
scheduler.every '24h', :first => :now do scheduler.every '24h', :first => :now do
archive! archive!
load_model! load_model!