Skip to content

Commit

Permalink
chore: pulling our fork back into step with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed May 22, 2020
1 parent 58e9bda commit f090b1c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use strict'

//var debug = require('debug')('httpsnippet')
var debug = console.log;
var debug = require('debug')('httpsnippet')
var es = require('event-stream')
var MultiPartForm = require('form-data')
var qs = require('querystring')
Expand Down
2 changes: 1 addition & 1 deletion src/targets/javascript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
default: 'xhr'
},

jquery: require('./jq'),
jquery: require('./jquery'),
fetch: require('./fetch'),
xhr: require('./xhr')
}
File renamed without changes.
1 change: 1 addition & 0 deletions src/targets/ruby/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = function (source, options) {

if (source.uriObj.protocol === 'https:') {
code.push('http.use_ssl = true')
.push('http.verify_mode = OpenSSL::SSL::VERIFY_NONE')
}

code.blank()
Expand Down

0 comments on commit f090b1c

Please sign in to comment.