Skip to content
This repository has been archived by the owner on Mar 18, 2018. It is now read-only.

Commit

Permalink
Update deps, change repo, replace promise by bluebird.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Mar 20, 2015
1 parent 85cb15b commit c6309df
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lib/connection-pool.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var _ = require('lodash');
var Promise = require('promise');
var Promise = require('bluebird');
var Connection = require('./connection');

// Expose module.
Expand Down
2 changes: 1 addition & 1 deletion lib/connection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var _ = require('lodash');
var exec = require('child_process').exec;
var LineWrapper = require('stream-line-wrapper');
var Promise = require('promise');
var Promise = require('bluebird');
var remote = require('./remote');

// Expose connection.
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@
},
"repository": {
"type": "git",
"url": "https://github.com/neoziro/ssh-pool.git"
"url": "https://github.com/shipitjs/ssh-pool.git"
},
"author": "Bergé Greg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neoziro/ssh-pool/issues"
"url": "https://github.com/shipitjs/ssh-pool/issues"
},
"homepage": "https://github.com/neoziro/ssh-pool",
"homepage": "https://github.com/shipitjs/ssh-pool",
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.0.1",
"rewire": "^2.1.3",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"chai": "^2.1.2",
"mocha": "^2.2.1",
"rewire": "^2.3.1",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"std-mocks": "^1.0.0"
},
"dependencies": {
"lodash": "^3.0.0",
"promise": "^6.1.0",
"bluebird": "^2.9.14",
"lodash": "^3.5.0",
"stream-line-wrapper": "^0.1.1"
}
}
2 changes: 1 addition & 1 deletion test/remote.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('SSH remote', function () {
var remoteObj = remote.parse('user@host');
expect(remoteObj).have.property('user', 'user');
expect(remoteObj).have.property('host', 'host');
expect(remoteObj).not.have.property('port');
expect(remoteObj).have.property('port', undefined);
});

it('should parse remote with port', function () {
Expand Down

0 comments on commit c6309df

Please sign in to comment.