I’m new to RoR. My gem does some background processing and loads a thin server so it can be checked from time to time. I need to put this on my web server using Capistrano.
Do people normally deploy gems to their servers or should the app be written in some other way?
Also is Capistrano the correct way to deploy gems?
I found out deploying a custom Gem is no different to any other project type. I just needed to add a new Capistrano task to my
deploy.rbfile so that the gem could get installed after the files get downloaded onto the server by Capsitrano. This is all I had to do.