Module: Handsoap::Http

Defined in:
lib/handsoap/http/part.rb,
lib/handsoap/http/drivers.rb,
lib/handsoap/http/request.rb,
lib/handsoap/http/response.rb,
lib/handsoap/http/drivers/curb_driver.rb,
lib/handsoap/http/drivers/mock_driver.rb,
lib/handsoap/http/drivers/abstract_driver.rb,
lib/handsoap/http/drivers/net_http_driver.rb,
lib/handsoap/http/drivers/http_client_driver.rb,
lib/handsoap/http/drivers/event_machine_driver.rb

Defined Under Namespace

Modules: Drivers Classes: Part, Request, Response

Constant Summary collapse

@@drivers =
{
  :curb => Drivers::CurbDriver,
  :em => Drivers::EventMachineDriver,
  :event_machine => Drivers::EventMachineDriver,
  :httpclient => Drivers::HttpClientDriver,
  :http_client => Drivers::HttpClientDriver,
  :net_http => Drivers::NetHttpDriver,
}

Class Method Summary collapse

Class Method Details

.driversObject



20
21
22
# File 'lib/handsoap/http/drivers.rb', line 20

def self.drivers
  @@drivers
end