Class: HTTPX::Plugins::Multipart::FormTranscoder::Encoder

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/httpx/plugins/multipart.rb

Instance Method Summary collapse

Constructor Details

#initialize(form) ⇒ Encoder

Returns a new instance of Encoder.



23
24
25
# File 'lib/httpx/plugins/multipart.rb', line 23

def initialize(form)
  @raw = HTTP::FormData.create(form)
end

Instance Method Details

#bytesizeObject



27
28
29
# File 'lib/httpx/plugins/multipart.rb', line 27

def bytesize
  @raw.content_length
end

#force_encoding(*args) ⇒ Object



31
32
33
# File 'lib/httpx/plugins/multipart.rb', line 31

def force_encoding(*args)
  @raw.to_s.force_encoding(*args)
end

#to_strObject



35
36
37
# File 'lib/httpx/plugins/multipart.rb', line 35

def to_str
  @raw.to_s
end