Sha256: 4167529fe0b70ec44ffa03a5dd039589f4fc034d5385243f0a0eaede4b5174de
Contents?: true
Size: 701 Bytes
Versions: 20
Compression:
Stored size: 701 Bytes
Contents
#!/usr/bin/env rackup # # config.ru for ramaze apps # # 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 => Ramaze.options.roots, :started => true) run Ramaze
Version data entries
20 entries across 13 versions & 2 rubygems