up vote 7 down vote favorite
3
share [g+] share [fb]

I'm trying to deploy a Sinatra app to Dreamhost and it says the following:

Since DH supports Passenger, which in turn supports Rack-based ruby applications, DH does indeed support Sinatra.

I'm having difficulty parsing that statement - what's the difference between Rack and Passenger (and why is Sinatra "Rack-based")?

link|improve this question

feedback

1 Answer

up vote 23 down vote accepted

Rack is a standardized API for web servers to talk to middleware and web frameworks in Ruby. Phusion Passenger is an Apache module that implements the Rack API. Sinatra is a web framework that is built on top of the Rack API, so because Dreamhost supports Phusion Passenger, that means that it supports Rack, and thus Sinatra.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.