Module: EDH
- Defined in:
- lib/edh.rb,
lib/edh/api.rb,
lib/edh/utils.rb,
lib/edh/errors.rb,
lib/edh/version.rb,
lib/edh/test_users.rb,
lib/edh/api/rest_api.rb,
lib/edh/http_service.rb,
lib/edh/http_service/response.rb,
lib/edh/http_service/multipart_request.rb
Defined Under Namespace
Modules: HTTPService, Passport, Utils Classes: EDHError
Constant Summary collapse
- VERSION =
"0.3"
Class Attribute Summary collapse
-
.http_service ⇒ Object
readonly
Control which HTTP service framework EDH uses.
Class Method Summary collapse
-
.make_request(path, args, verb, options = {}) ⇒ Object
An convenenient alias to EDH.http_service.make_request.
Class Attribute Details
.http_service ⇒ Object
Control which HTTP service framework EDH uses.
23 24 25 |
# File 'lib/edh.rb', line 23 def http_service @http_service end |
Class Method Details
.make_request(path, args, verb, options = {}) ⇒ Object
An convenenient alias to EDH.http_service.make_request.
41 42 43 |
# File 'lib/edh.rb', line 41 def self.make_request(path, args, verb, = {}) http_service.make_request(path, args, verb, ) end |