5 Commits

Author SHA1 Message Date
James Coglan 10a7d59898 Test on Node 0.8 with Travis. 2012-07-15 13:14:05 +01:00
James Coglan 002e55ae6c Bump version to 0.1.1. 2012-07-15 13:13:21 +01:00
James Coglan 1489e32d1f Merge pull request #1 from pselden4/master
Fix implicit variable creation.
2012-05-11 07:53:55 -07:00
Paul Selden 0b70daed71 Fix implicit variable creation. 2012-05-11 10:47:23 -04:00
James Coglan efaed17004 Remove branch identifier from Travis image. 2012-03-28 00:55:38 +01:00
5 changed files with 17 additions and 8 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ language: node_js
node_js:
- 0.4
- 0.6
- 0.7
- 0.8
before_script:
- rake prepare
+9
View File
@@ -0,0 +1,9 @@
=== 0.1.1 / 2012-07-15
* Fix an implicit global variable leak (missing semicolon)
=== 0.1.0 / 2012-02-26
* Initial release: Redis backend for Faye 0.8
+1 -1
View File
@@ -1,4 +1,4 @@
# faye-redis [![Build Status](https://secure.travis-ci.org/faye/faye-redis-node.png?branch=master)](http://travis-ci.org/faye/faye-redis-node)
# faye-redis [![Build Status](https://secure.travis-ci.org/faye/faye-redis-node.png)](http://travis-ci.org/faye/faye-redis-node)
This plugin provides a Redis-based backend for the [Faye](http://faye.jcoglan.com)
messaging server. It allows a single Faye service to be distributed across many
+1 -1
View File
@@ -187,7 +187,7 @@ Engine.prototype = {
_withLock: function(lockName, callback, scope) {
var lockKey = this._ns + '/locks/' + lockName,
currentTime = new Date().getTime(),
expiry = currentTime + this.LOCK_TIMEOUT * 1000 + 1;
expiry = currentTime + this.LOCK_TIMEOUT * 1000 + 1,
self = this;
var releaseLock = function() {
+5 -5
View File
@@ -4,7 +4,7 @@
, "author" : "James Coglan <jcoglan@gmail.com> (http://jcoglan.com/)"
, "keywords" : ["pubsub", "bayeux"]
, "version" : "0.1.0"
, "version" : "0.1.1"
, "engines" : {"node": ">=0.4.0"}
, "main" : "./faye-redis"
, "dependencies" : {"hiredis": "", "redis": ""}
@@ -14,13 +14,13 @@
, "bugs" : "http://github.com/faye/faye-redis-node/issues"
, "licenses" : [ { "type" : "MIT"
, "url" : "http://www.opensource.org/licenses/mit-license.php"
, "licenses" : [ { "type" : "MIT"
, "url" : "http://www.opensource.org/licenses/mit-license.php"
}
]
, "repositories" : [ { "type" : "git"
, "url" : "git://github.com/faye/faye-redis-node.git"
, "repositories" : [ { "type" : "git"
, "url" : "git://github.com/faye/faye-redis-node.git"
}
]
}