Sha256: 8e4d8e3a46373ae661da4253e0604c2ec1235a55e2a1f38b3e974208aa6332ce

Contents?: true

Size: 555 Bytes

Versions: 2

Compression:

Stored size: 555 Bytes

Contents

#!/usr/bin/env rackup
#
# config.ru for ramaze apps
# use thin >= 1.0.0
# thin start -R config.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 File.expand_path('app', File.dirname(__FILE__))
Ramaze.start(:file => __FILE__, :started => true)
run Ramaze

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
manveru-ramaze-2009.04.18 lib/proto/config.ru
manveru-ramaze-2009.04.22 lib/proto/config.ru