Skip to content

Commit

Permalink
tunneling agent is now it's own library.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeal committed Mar 1, 2013
1 parent ef5ab90 commit ca1ed81
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 233 deletions.
9 changes: 4 additions & 5 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,15 @@ var http = require('http')
, hawk = require('hawk')
, aws = require('aws-sign')
, uuid = require('node-uuid')
, mime = require('mime')
, tunnel = require('tunnel-agent')

, ForeverAgent = require('forever-agent')
, FormData = require('form-data')

, Cookie = require('cookie-jar')
, CookieJar = Cookie.Jar
, cookieJar = new CookieJar

, tunnel = require('./tunnel')

, mime = require('mime')
, FormData = require('form-data')
;

if (process.logging) {
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"cookie-jar": "~0.2.0",
"aws-sign": "~0.2.0",
"oauth-sign": "~0.2.0",
"forever-agent": "~0.2.0"
"forever-agent": "~0.2.0",
"tunnel-agent": "~0.2.0"
},
"scripts": {
"test": "node tests/run.js"
Expand Down
227 changes: 0 additions & 227 deletions tunnel.js

This file was deleted.

0 comments on commit ca1ed81

Please sign in to comment.