Sha256: 994a5e6e22ad6e62a1da339ae3110ece651f18900cf5d9bc477b5fcedf87fb99
Contents?: true
Size: 532 Bytes
Versions: 33
Compression:
Stored size: 532 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. cwd = File.dirname(__FILE__) require "#{cwd}/start" Ramaze.start(:started => true) run Innate
Version data entries
33 entries across 30 versions & 4 rubygems