Sha256: ab445b341aabefa9a5aba50e1946e54aaa28d8eedcb28e715a87ecb2c189da3c

Contents?: true

Size: 747 Bytes

Versions: 4

Compression:

Stored size: 747 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.
#
# Do not set the adapter.handler in here, it will be ignored.
# You can choose the adapter like `ramaze start -s mongrel` or set it in the
# 'start.rb' and use `ruby start.rb` instead.

require ::File.expand_path('app', ::File.dirname(__FILE__))
Ramaze.start(:file => __FILE__, :started => true)
run Ramaze

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
manveru-ramaze-2009.06.04 lib/proto/config.ru
manveru-ramaze-2009.06 lib/proto/config.ru
ramaze-2009.06.04 lib/proto/config.ru
ramaze-2009.06 lib/proto/config.ru