class Object
Constants
- CompositeIO
-
Concatenate together multiple IO objects into a single, composite IO object for purposes of reading as a single stream.
@example
crio = CompositeReadIO.new(StringIO.new('one'), StringIO.new('two'), StringIO.new('three')) puts crio.read # => "onetwothree"
- MultipartPost
- Multipartable
- Parts
- UploadIO
-
Convenience methods for dealing with files and IO that are to be uploaded.