diff options
| author | mo <mo@mokhan.ca> | 2018-05-24 16:29:33 -0600 |
|---|---|---|
| committer | mo <mo@mokhan.ca> | 2018-05-24 16:29:33 -0600 |
| commit | 59f8fbc873af687358be7a71e5f656a1a8f5ead7 (patch) | |
| tree | c3d346be6c8286e4f861dca865dde39e7f5b3045 /lib | |
| parent | d4b1c5d81bcba19c1092f720b5bd523600c99b3c (diff) | |
fix lint error.v0.1.8
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/net/hippie/client.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/hippie/client.rb b/lib/net/hippie/client.rb index 867d79e..21a6cb5 100644 --- a/lib/net/hippie/client.rb +++ b/lib/net/hippie/client.rb @@ -67,7 +67,7 @@ module Net def http_for(uri) http = Net::HTTP.new(uri.host, uri.port) http.read_timeout = 30 - http.use_ssl = uri.scheme == "https" + http.use_ssl = uri.scheme == 'https' http.verify_mode = verify_mode http.set_debug_output(Net::Hippie.logger) apply_client_tls_to(http) |
