views:

553

answers:

2

I am trying to create Sinatra based heroku app without any luck?

+5  A: 

To answer your question: Yes!

For reference: http://docs.heroku.com/rack#sinatra

August Lilleaas
+1  A: 

The sinatra application should be as you always do but on the root of your application you should include a config file named config.ru

It basically says:

require 'application' run

Sinatra::Application