I have been learning Ruby and Sinatra over the past couple months and I would like to get my app out in the wild. I am looking for suggestions for web hosts that support Sinatra apps and any details as to the actual process would be great as well.
I currently use hostmonster for a couple other sites. Hostmonster does support Rails applications. I would assume since Rails runs on Rack, hostmonster will also run Sinatra apps but I am not certain.
I haven't had much luck finding documentation on running Sinatra apps on hostmonster or any other web host outside of Heroku. Also, I haven't been able to figure out how to get my Sinatra app running by following through the Rails installation documentation provided by hostmonster.
You should be able to run on any app that works for Rack. The convention is to use the config.ru file. In there, instead of specifying how to load Rails, just specify how to load Sinatra.
Example config.ru
Where "main" is the file that loads all the Sinatra stuff.