summary refs log tree commit
path: root/lib/rack/server.rb
DateCommit message (Expand)
2014-10-02Less allocated objects on each request
2014-09-01Restore Rack::Server#middleware backward compatibility
2014-07-19add quiet mode of rack server, rackup --quiet
2014-07-18default_middleware_by_environment should always returns empty array for unkno...
2014-07-14Enable cleanup of Tempfiles from multipart form data by default
2014-07-13remove incorrect comment in PR 706
2014-07-13Simplify default middleware construction.
2014-07-13Give @middleware a more semantic name.
2014-07-13whitespace
2014-06-30Fix AccessLog documentation typo
2013-04-22Merge pull request #514 from postmodern/localhost_development
2013-04-21Prevent signals from being sent to pid 0
2013-04-12Removed the comment that rack.pid is the default as it doesn't seem to be the...
2013-02-09Default host to localhost when in development mode.
2013-01-30Stop overwriting existing pidfiles.
2013-01-21Don't modify the middleware hash in Rack::Server
2013-01-03Add a rackup option for one-liner rack app server
2012-05-25update the dead link
2012-05-13Improve pidfile reporting and test coverage
2012-05-12Check if the PID in pidfile is still running #371
2012-05-12Check that the pidfile is not already present before overriding it
2012-04-26rackup: include the value of each -I command line option in $LOAD_PATH
2012-04-10add thin and puma to suggested servers
2011-12-21Rack::Server#start passes any given block through to Handler#run.
2011-05-23fix whitespace errors
2011-05-03Merge pull request #92 from stormbrew/handler-options-2.1.
2011-05-02shurrup 1.8.6
2011-05-02Add some basic Rack::Server tests, nothing like the oldies, but faster
2010-12-11Implemented handler-specific options in a way that allows them to be retrieve...
2010-12-10Resolve absolute path of config so daemonize works
2010-12-10Don't throw exceptions for invalid command-line options.
2010-12-09Removing the promiscous umask from the daemonize implementation.
2010-10-04Use chunked first over in-memory content-length calculation
2010-10-04release semantics of Rack::Chunked and Rack::ContentLength from handlers. thi...
2010-07-12Rack::Server should accept :app and override :config.
2010-07-08The application should be loaded prior to daemonization to prevent issues wit...
2010-07-08Debugging should not change semantics of load path or require modification be...
2010-06-16Use a more common format for extra version data, as per R. Konstantin Haase s...
2010-06-16Show rack release version in rackup --version
2010-06-16Rack should respect $RACK_ENV when starting up, fixes 3rd party bugs introduc...
2010-06-09set ENV["RACK_ENV"] to options[:environment] as many frameworks rely on this
2010-06-09Get rid of a few more warnings
2010-03-23Move trap(:INT) to Rack::Server and support optional Handler protocol where h...
2010-03-23Fix a bug in CGI detection
2010-03-23Adding options passthrough for Rack::Server.start to make CGI apps easier to ...
2010-02-07Add a failing test and fix for #90
2009-12-26Revert "Add --chdir option to rackup"
2009-12-26Add --chdir option to rackup
2009-12-26Use "config" instead of "rack_file"
2009-11-23Extract the option parser