I am currently building a gem that rely on Rack to serve HTTP-requests.
Instead of cluttering my own gem (or repository) with deploy-specific stuff, I just want to be able to add this to a Gemfile:
gem 'my-awesome-rack-gem'
gem 'unicorn'
gem 'capistrano'
And then be able to run and manage everything from a separate installation. But is that even possible? I have tried looking for gems that does sort of the same, and I have tried looking in gems that does rack-stuff, but without a proper solution.
Thoughts and links are welcome.