wrapper class for input stream so that HTTP doesn’t blow up when using it ie. calling size() and rewind()
# File lib/morpheus/api/body_io.rb, line 8 def initialize(io) @io = io end
# File lib/morpheus/api/body_io.rb, line 16 def rewind nil end
# File lib/morpheus/api/body_io.rb, line 12 def size 0 end