converted imagesize plugin to lib

This commit is contained in:
albert
2012-01-27 15:05:46 -05:00
parent c8bcf5ad7c
commit 3603fdd877
24 changed files with 4 additions and 5 deletions

19
schedule.rb Normal file
View File

@@ -0,0 +1,19 @@
set :output, "/var/log/whenever.log"
every 1.day do
runner "TagSubscription.process_all"
end
every 1.day do
runner "PostPruner.new.prune!"
end
if environment == "production"
every 1.hour do
runner "AmazonBackup.execute"
end
every 1.week do
runner "UserPasswordResetNonce.prune!"
end
end