connect-dynamodb
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -0,1 +1,6 @@ | ||
0.0.6 / 2012-06-29 | ||
================== | ||
* Fix an error with dynode 0.5.0 | ||
0.0.5 / 2012-06-13 | ||
@@ -2,0 +7,0 @@ ================== |
@@ -1,2 +0,1 @@ | ||
/*! | ||
@@ -63,5 +62,6 @@ * Connect - DynamoDB | ||
// check if table exists, otherwise create it | ||
dynode.describeTable(options.table, function (error, info) { | ||
var client = this.client; | ||
client.describeTable(options.table, function (error, info) { | ||
if (error) { | ||
dynode.createTable(options.table, console.log); | ||
client.createTable(options.table, console.log); | ||
} | ||
@@ -68,0 +68,0 @@ }); |
{ | ||
"name": "connect-dynamodb", | ||
"description": "DynamoDB session store for Connect", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"author": "Mike Carson <ca98am79@gmail.com>", | ||
@@ -6,0 +6,0 @@ "main": "./index.js", |
@@ -59,1 +59,38 @@ | ||
); | ||
## TODO | ||
Improve tests | ||
## Contributors | ||
Some people have have added features and fixed bugs in `connect-dynamodb` other than me. | ||
* [Eric Abouaf](https://github.com/neyric) | ||
Thanks! | ||
## LICENSE - "MIT License" | ||
Copyright (c) 2012 Mike Carson, http://ca98am79.com/ | ||
Permission is hereby granted, free of charge, to any person | ||
obtaining a copy of this software and associated documentation | ||
files (the "Software"), to deal in the Software without | ||
restriction, including without limitation the rights to use, | ||
copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following | ||
conditions: | ||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES | ||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | ||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
OTHER DEALINGS IN THE SOFTWARE. |
10338
218
95