Skip to content

Instantly share code, notes, and snippets.

@mgomes
Created March 9, 2012 21:23
Show Gist options
  • Save mgomes/2008774 to your computer and use it in GitHub Desktop.
Save mgomes/2008774 to your computer and use it in GitHub Desktop.
desc "Heroku Cron Task"
task :cron => :environment do
begin
Rake::Task["accounts:bill"].invoke
rescue
HoptoadNotifier.notify($!)
end
begin
Rake::Task["accounts:expire"].invoke
rescue
HoptoadNotifier.notify($!)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment