class Patron::Session

def post(url, data, headers = {})

must be a string.
Uploads the passed +data+ to the specified +url+ using HTTP POST. +data+
def post(url, data, headers = {})
  request(:post, url, headers, :data => data)
end