class Ethon::Easy

def initialize(options = {})

Other tags:
    See: http://curl.haxx.se/libcurl/c/curl_easy_setopt.html -
    See: Ethon::Easy::Options -

Returns:
  • (Easy) - A new Easy.

Options Hash: (**options)
  • :headers (Hash) -- Request headers.

Parameters:
  • options (Hash) -- The options to set.

Other tags:
    Example: Create a new Easy. -
def initialize(options = {})
  Curl.init
  set_attributes(options)
  set_callbacks
end