Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/rackup/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -170,14 +170,14 @@ def handler_opts(options)
# This method can be used to very easily launch a CGI application, for
# example:
#
# Rack::Server.start(
# Rackup::Server.start(
# :app => lambda do |e|
# [200, {'content-type' => 'text/html'}, ['hello world']]
# end,
# :server => 'cgi'
# )
#
# Further options available here are documented on Rack::Server#initialize
# Further options available here are documented on Rackup::Server#initialize
def self.start(options = nil)
new(options).start
end
Expand Down
Loading