We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
require 'openssl'
1 parent 911ab77 commit cd2a0ccCopy full SHA for cd2a0cc
3 files changed
src/targets/ruby/native/client.ts
@@ -19,11 +19,6 @@ export const native: Client<RubyNativeOptions> = {
19
20
push("require 'uri'");
21
push("require 'net/http'");
22
-
23
- if (uriObj.protocol === 'https:') {
24
- push("require 'openssl'");
25
- }
26
27
blank();
28
29
// To support custom methods we check for the supported methods
src/targets/ruby/native/fixtures/https.rb
@@ -1,6 +1,5 @@
1
require 'uri'
2
require 'net/http'
3
-require 'openssl'
4
5
url = URI("https://mockbin.com/har")
6
src/targets/ruby/native/fixtures/insecure-skip-verify.rb
0 commit comments