# File lib/rack/server.rb, line 132
    def start
      if options[:debug]
        $DEBUG = true
        require 'pp'
        p options[:server]
        pp wrapped_app
        pp app
      end

      if options[:warn]
        $-w = true
      end

      if includes = options[:include]
        $LOAD_PATH.unshift *includes
      end

      if library = options[:require]
        require library
      end

      daemonize_app if options[:daemonize]
      write_pid if options[:pid]
      server.run wrapped_app, options
    end