class Faraday::RequestOptions
RequestOptions
contains the configurable properties for a Faraday
request.
Public Instance Methods
Source
# File lib/faraday/options/request_options.rb, line 10 def []=(key, value) if key && key.to_sym == :proxy super(key, value ? ProxyOptions.from(value) : nil) else super(key, value) end end
Calls superclass method
Source
# File lib/faraday/options/request_options.rb, line 18 def stream_response? on_data.is_a?(Proc) end