module Ethon::Easy::Options
This module contains the logic and knowledge about the available options on easy.
Attributes
Public Instance Methods
Source
# File lib/ethon/easy/options.rb, line 19 def escape? return true if !defined?(@escape) || @escape.nil? @escape end
Source
# File lib/ethon/easy/options.rb, line 24 def multipart=(b) @multipart = b end
Source
# File lib/ethon/easy/options.rb, line 10 def url=(value) @url = value Curl.set_option(:url, value, handle) end