Reputation: 23990
I have a Ruby script that I want to run every few minutes using Google App Engine. I don't want to run a web service, just that script. Any ideas how to do that with JRuby?
Upvotes: 0
Views: 147
Reputation: 6334
Checkout cron support on GAE:
http://code.google.com/appengine/docs/java/config/cron.html
Not sure what you mean by "don't want to run a web service," but this is the way to do it on GAE.
Upvotes: 1