Skip to content

Commit f090b1c

Browse files
committed
chore: pulling our fork back into step with upstream
1 parent 58e9bda commit f090b1c

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

src/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict'
22

3-
//var debug = require('debug')('httpsnippet')
4-
var debug = console.log;
3+
var debug = require('debug')('httpsnippet')
54
var es = require('event-stream')
65
var MultiPartForm = require('form-data')
76
var qs = require('querystring')

src/targets/javascript/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
default: 'xhr'
99
},
1010

11-
jquery: require('./jq'),
11+
jquery: require('./jquery'),
1212
fetch: require('./fetch'),
1313
xhr: require('./xhr')
1414
}

src/targets/ruby/native.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ module.exports = function (source, options) {
3434

3535
if (source.uriObj.protocol === 'https:') {
3636
code.push('http.use_ssl = true')
37+
.push('http.verify_mode = OpenSSL::SSL::VERIFY_NONE')
3738
}
3839

3940
code.blank()

0 commit comments

Comments
 (0)