multipart-post icon indicating copy to clipboard operation
multipart-post copied to clipboard

Adds multipart POST capability to net/http

Results 10 multipart-post issues
Sort by recently updated
recently updated
newest added

Thank you for useful gem! On some systems, a preview of an image is not displayed correctly when I specify "local.path" as a filename. To solve this behavior, could you...

https://github.com/socketry/multipart-post/pull/52 ### Types of Changes - Bug fix. - New feature. ### Testing - [ ] I added tests for my changes. - [ ] I tested my changes locally....

In Ruby 1.8.7, StringIO responds to path, but in 1.9.2, it no longer does, which causes UploadIO to break (composite_io.rb:69). An easy solution would be to check for obj.respond_to? :path...

I'm using Faraday which requires this gem as a dependency. When I try this code in the rails console ``` ruby conn = Faraday.new('http://localhost:3000') do |far| far.request :multipart far.request :url_encoded...

I am experiencing an issue in `multipart-post` 2.0.0. I have a client piece of code that looks roughly like this: ```ruby require 'net/http' require 'net/http/post/multipart' http = Net::HTTP.new('localhost', 8080) http.start...

Sir, Although this is not really an issue, at least not a major one, I would like to report that file upload is relatively slow , approximately only one third...

For those using JRuby. Image upload may not work with this gem. Try the following code on JRuby: ``` f = File.open("test.png") obj = f.read(f.size) ``` f.size and obj.size are...

I want to send some nested params with the file. Is it not getting send properly. For example ``` ruby sub_params = { contact: { 'first_name' => 'prathamesh', 'language' =>...

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. Release notes Sourced from actions/download-artifact's releases. v4.1.7 What's Changed Update @​actions/artifact dependency by @​bethanyj28 in actions/download-artifact#325 Full Changelog: https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7 v4.1.6 What's Changed updating @actions/artifact...

dependencies

Ruby's lack of clear standard interface for IO bytes again. I am trying to use with a non-File IO, specifically a `[Down](https://github.com/janko/down)::ChunkedIO`. It has a #size method to return bytesize,...