I have made a POST to a site using Httparty with the following code:
HTTParty.post("http://example.com", :body => application_hash.to_json, :headers => {'Content-Type' => 'application/json'})
How can I check what the response code was for this submission?