Skip to content

Commit

Permalink
update to node 0.6.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriano Raiano committed Apr 27, 2012
1 parent 74386cd commit 4c17a02
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 38 deletions.
3 changes: 1 addition & 2 deletions Jakefile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Jakefile.js v0.0.1
// (c) 2012 Kaba AG, MIC AWM
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// Here we will document the common [jake](https://github.com/mde/jake) tasks generic to all other jake
Expand Down
9 changes: 3 additions & 6 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The project goal is to provide an eventstore implementation for node.js:

- load and store events via EventStream object
- event dispatching to your publisher
- supported Dbs (MongoDb, CouchDb, Redis)
- supported Dbs (MongoDb, Redis)
- snapshot support

# Installation
Expand All @@ -18,9 +18,6 @@ choose one of the existing storage implementation or provide your own:
// for mongoDb
npm install eventstore.mongoDb

// for couchDb
npm install eventstore.couchDb

// for redis
npm install eventstore.redis

Expand All @@ -39,7 +36,7 @@ with option `eventstore.createStore({logger: 'console'});`.

### Provide implementation for storage and publishing events

Example will use redis storage, but same will work for mongoDb and couchDb.
Example will use redis storage, but same will work for mongoDb.

require storage = require('eventstore.redis');

Expand Down Expand Up @@ -121,7 +118,7 @@ create a snapshot point

# License

Copyright (c) 2012 Kaba AG, MIC AWM
Copyright (c) 2012 Jan Muehlemann, Adriano Raiano

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 1 addition & 2 deletions lib/eventDispatcher.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// lib/eventDispatcher.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// The eventdispatchers task is to publish undispatched events to the used publisher
Expand Down
3 changes: 1 addition & 2 deletions lib/eventDispatcherProcess.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// lib/eventDispatcherProcess.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// This is the event dispatcher process that will be called as separate process...
Expand Down
3 changes: 1 addition & 2 deletions lib/eventStore.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// lib/eventStore.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// The eventstore is the main module delegating all work to it's _eventDispatcher_, _storage implementation_, ...
Expand Down
3 changes: 1 addition & 2 deletions lib/interfaces.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// lib/interfaces.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// Definition of modules used in eventstore. You can check an object against
Expand Down
3 changes: 1 addition & 2 deletions lib/logger/consoleLogger.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// lib/logger/consoleLogger.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// You could use this console logger or provide your own implementation.
Expand Down
3 changes: 1 addition & 2 deletions lib/publisher/fakePublisher.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// lib/publisher/fakePublisher.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// A __fake__ implemetation for publishing. __Use only for development purpose.__
Expand Down
3 changes: 1 addition & 2 deletions lib/storage/inMemory/storage.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// lib/storage/inMemory/storage.js v0.4.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// An __inMemory__ implemetation for storage. __Use only for development purpose.__
Expand Down
3 changes: 1 addition & 2 deletions lib/util.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// lib/util.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// Util module
Expand Down
2 changes: 1 addition & 1 deletion license
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012 Kaba AG, MIC AWM
Copyright (c) 2012 Jan Muehlemann, Adriano Raiano

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"author": "Kaba MIC AWM"
"author": "Jan Muehlemann, Adriano Raiano"
, "name": "eventstore"
, "version": "0.5.0"
, "contributors": [
{ "name": "Jan Muehlemann", "email": "jan.muehlemann@gmail.com" },
{ "name": "Adriano Raiano", "email": "adriano.raiano@kaba.com" }
{ "name": "Adriano Raiano", "email": "adriano@raiano.ch" }
]
, "private": false
, "repository": {
Expand All @@ -17,7 +17,7 @@
"lib": "./lib"
}
, "engines": {
"node": ">= v0.6.0"
"node": ">= v0.6.15"
}
, "dependencies": {
"async": ">= 0.0.1"
Expand Down
6 changes: 3 additions & 3 deletions storage/mongoDb/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"author": "Kaba MIC AWM"
"author": "Jan Muehlemann, Adriano Raiano"
, "name": "eventstore.mongoDb"
, "version": "0.5.0"
, "contributors": [
{ "name": "Jan Muehlemann", "email": "jan.muehlemann@gmail.com" },
{ "name": "Adriano Raiano", "email": "adriano.raiano@kaba.com" }
{ "name": "Adriano Raiano", "email": "adriano@raiano.ch" }
]
, "private": false
, "repository": {
Expand All @@ -13,7 +13,7 @@
}
, "main": "./index.js"
, "engines": {
"node": ">= v0.4.0"
"node": ">= v0.6.15"
}
, "dependencies": {
"mongodb": ">= 0.0.1"
Expand Down
3 changes: 1 addition & 2 deletions storage/mongoDb/storage.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// storage.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// The storage is the database driver for mongoDb.
Expand Down
6 changes: 3 additions & 3 deletions storage/redis/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"author": "Kaba MIC AWM"
"author": "Jan Muehlemann, Adriano Raiano"
, "name": "eventstore.redis"
, "version": "0.5.0"
, "contributors": [
{ "name": "Jan Muehlemann", "email": "jan.muehlemann@gmail.com" },
{ "name": "Adriano Raiano", "email": "adriano.raiano@kaba.com" }
{ "name": "Adriano Raiano", "email": "adriano@raiano.ch" }
]
, "private": false
, "repository": {
Expand All @@ -13,7 +13,7 @@
}
, "main": "./index.js"
, "engines": {
"node": ">= v0.4.0"
"node": ">= v0.6.15"
}
, "dependencies": {
"redis": ">= 0.0.1"
Expand Down
3 changes: 1 addition & 2 deletions storage/redis/storage.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// storage.js v0.5.0
// (c) 2012 Kaba AG, MIC AWM; under MIT License
// (by) Jan Muehlemann (jamuhl)
// (c)(by) Jan Muehlemann (jamuhl)
// , Adriano Raiano (adrai)

// The storage is the database driver for redis.
Expand Down

0 comments on commit 4c17a02

Please sign in to comment.