Sha256: d4c486339bb0d290a151d2c7de5d817e25bc7a7ca7620566a839b9db7f304563
Contents?: true
Size: 733 Bytes
Versions: 16
Compression:
Stored size: 733 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__) Ramaze.start(:root => __DIR__, :started => true) run Ramaze
Version data entries
16 entries across 16 versions & 5 rubygems