If someone POSTs to my Rails application with HTTP version 1.0 like this:
POST /update HTTP/1.0
How do I send an HTTP version 1.0 response like this:
HTTP/1.0 200 OK
I'm using Ruby on Rails 3. Rails responses always seem to be HTTP version 1.1, but if the client sends a request with HTTP version 1.0 I want to respond with HTTP version 1.0.