Method: WebApiMethod#net_http
- Defined in:
- lib/web_api/web_api_method.rb
#net_http(request) ⇒ Object
98 99 100 101 102 |
# File 'lib/web_api/web_api_method.rb', line 98 def net_http(request) http = Net::HTTP.new(request.host, request.port) http.use_ssl = request.scheme=='https' return http end |