Upload files using Faraday
I'm having issues attempting to upload a file to a web service using Faraday. My code: conn = Faraday.new('http://myapi') do |f| f.request :multipart end payload = { :file => Faraday::Uploa...