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

Commit

Permalink
Bumped dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Oct 20, 2014
1 parent f27e06d commit 2e9383a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions lib/redis_ascoltatore.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ function RedisAscoltatore(opts) {
this._ready_pub = false;
this._opts = opts || {};
this._opts.redis = this._opts.redis || require("redis");
this._opts.port = this._opts.port || 6379;
this._opts.host = this._opts.host || "127.0.0.1";

this._ascoltatores = {};

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
"David Halls <[email protected]>"
],
"devDependencies": {
"mocha": "~1.18.2",
"chai": "~1.9.1",
"sinon": "~1.7.3",
"sinon-chai": "~2.5.0",
"mocha": "^1.21.5",
"chai": "^1.9.1",
"sinon": "^1.10.3",
"sinon-chai": "^2.6.0",
"optimist": "~0.6.0",
"async_bench": "~0.3.0",
"dox-foundation": "0.5.4",
Expand All @@ -60,12 +60,12 @@
},
"dependencies": {
"async": "~0.9.0",
"debug": "~1.0.4",
"debug": "^2.0.0",
"node-uuid": "~1.4.0",
"qlobber": "~0.3.0"
},
"optionalDependencies": {
"redis": "~0.11.0",
"redis": "~0.12.1",
"hiredis": "~0.1.17",
"zmq": "~2.6.0",
"amqp": "~0.2.0",
Expand Down
4 changes: 3 additions & 1 deletion test/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ global.async = require("async");
global.redisSettings = function() {
return {
json: false,
redis: require('redis')
redis: require('redis'),
port: 6379,
host: '127.0.0.1'
};
};

Expand Down

0 comments on commit 2e9383a

Please sign in to comment.