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.



25
26
27
# File 'lib/httpx/plugins/multipart.rb', line 25

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

Instance Method Details

#bytesizeObject



29
30
31
# File 'lib/httpx/plugins/multipart.rb', line 29

def bytesize
  @raw.content_length
end

#force_encoding(*args) ⇒ Object



33
34
35
# File 'lib/httpx/plugins/multipart.rb', line 33

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

#to_strObject



37
38
39
# File 'lib/httpx/plugins/multipart.rb', line 37

def to_str
  @raw.to_s
end