method

do_POST

rspec latest stable - Class: DispatchServlet

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (1.1.12) is shown here.

do_POST(request, response)
public

No documentation available.

# File story_server/prototype/lib/server.rb, line 4
  def do_POST(request, response)
    File.open('story', 'w') do |io|
      io.write(request.body)
    end

    response.status = 200
    response['Content-Type'] = 'text/html'
    response.body = "body"
  end