#!/usr/bin/env rackup # start.ru for ramaze apps # use thin>=0.6.3 # thin start -r start.ru # # rackup is a useful tool for running Rack applications, which uses the # Rack::Builder DSL to configure middleware and build up applications easily. # # rackup automatically figures out the environment it is run in, and runs your # application as FastCGI, CGI, or standalone with Mongrel or WEBrick—all from # the same configuration. require 'start' Ramaze.trait[:essentials].delete Ramaze::Adapter Ramaze.start :force => true run Ramaze::Adapter::Base