Does anyone know of a background job manager that works with Rails 3? I have heard of Starling and Workling but I do not see a fork for Rails 3.
Are you looking for a background-job worker ? for simple usage i suggest delayed_job https://github.com/collectiveidea/delayed_job/
Resque instead is more powerfull (It's used for github background job) but complicated. https://github.com/defunkt/resque
bye