synapse-mongo 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +13 -0
  3. data/README.md +10 -0
  4. data/lib/synapse/mongo/version.rb +1 -1
  5. metadata +39 -36
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 556a3ea4de19f5a4dd0e069c99ed91495ca5d0bc
4
+ data.tar.gz: 3f385d9e127db166942d322ef6ddea7779d7dee0
5
+ SHA512:
6
+ metadata.gz: 17e41b02328000297bead234a9805272c1bfa495681df346ce7b68a3b0f2cceb52e3d3df51a06655c3e3de3ee6704d82e3929d9647e082c729dc79f3c98e4f9f
7
+ data.tar.gz: 04c583f96b8eafc9d7ac088b6bfde286bc6e104a3139690c6e0e6569a1aeabfa1fe638eea6bd50fa52bb526f01bc65c53c2a20e670a334b49b05c83c94001e8f
data/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2013 Ian Unruh
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -0,0 +1,10 @@
1
+ # synapse-mongo
2
+
3
+ [![Build Status](https://travis-ci.org/ianunruh/synapse.png?branch=master)](https://travis-ci.org/ianunruh/synapse-mongo)
4
+
5
+ Implementations of various Synapse CQRS components for MongoDB
6
+
7
+ + Event store (COMPLETE)
8
+ + Process repository (COMPLETE)
9
+ + Audit log (planned)
10
+ + Distributed locking (possibility)
@@ -1,5 +1,5 @@
1
1
  module Synapse
2
2
  module Mongo
3
- VERSION = '0.3.1'
3
+ VERSION = '0.3.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,46 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: synapse-mongo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
5
- prerelease:
4
+ version: 0.3.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Ian Unruh
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-06-03 00:00:00.000000000 Z
11
+ date: 2013-08-21 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: synapse-core
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
21
- version: '0.5'
19
+ version: 0.5.6
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
29
- version: '0.5'
26
+ version: 0.5.6
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: mongo
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - '>='
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - '>='
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  description: MongoDB implementations for the Synapse CQRS framework
@@ -49,56 +44,64 @@ executables: []
49
44
  extensions: []
50
45
  extra_rdoc_files: []
51
46
  files:
52
- - lib/synapse-mongo.rb
53
- - lib/synapse/mongo/version.rb
54
- - lib/synapse/configuration/process_manager/mongo/process_repository.rb
55
- - lib/synapse/configuration/process_manager/mongo.rb
47
+ - LICENSE
48
+ - README.md
49
+ - lib/synapse/common/mongo/base_template.rb
56
50
  - lib/synapse/configuration/event_store/mongo/event_store.rb
57
51
  - lib/synapse/configuration/event_store/mongo.rb
58
52
  - lib/synapse/configuration/mongo.rb
59
- - lib/synapse/process_manager/mongo/process_repository.rb
60
- - lib/synapse/process_manager/mongo/process_document.rb
61
- - lib/synapse/process_manager/mongo/template.rb
62
- - lib/synapse/process_manager/mongo.rb
53
+ - lib/synapse/configuration/process_manager/mongo/process_repository.rb
54
+ - lib/synapse/configuration/process_manager/mongo.rb
63
55
  - lib/synapse/event_store/mongo/cursor_event_stream.rb
64
56
  - lib/synapse/event_store/mongo/event_store.rb
65
- - lib/synapse/event_store/mongo/storage_strategy.rb
66
- - lib/synapse/event_store/mongo/template.rb
67
57
  - lib/synapse/event_store/mongo/per_commit_strategy.rb
68
58
  - lib/synapse/event_store/mongo/per_event_strategy.rb
59
+ - lib/synapse/event_store/mongo/storage_strategy.rb
60
+ - lib/synapse/event_store/mongo/template.rb
69
61
  - lib/synapse/event_store/mongo.rb
70
- - lib/synapse/common/mongo/base_template.rb
62
+ - lib/synapse/mongo/version.rb
63
+ - lib/synapse/process_manager/mongo/process_document.rb
64
+ - lib/synapse/process_manager/mongo/process_repository.rb
65
+ - lib/synapse/process_manager/mongo/template.rb
66
+ - lib/synapse/process_manager/mongo.rb
71
67
  - lib/synapse/serialization/converter/bson.rb
72
- - test/test_helper.rb
73
- - test/configuration/mongo/process_manager_test.rb
68
+ - lib/synapse-mongo.rb
69
+ - test/common/mongo/base_template_test.rb
74
70
  - test/configuration/mongo/event_store_test.rb
75
- - test/process_manager/mongo/repository_test.rb
71
+ - test/configuration/mongo/process_manager_test.rb
76
72
  - test/event_store/mongo/event_store_test.rb
77
- - test/common/mongo/base_template_test.rb
73
+ - test/process_manager/mongo/repository_test.rb
78
74
  - test/serialization/converter/bson_test.rb
79
- homepage: https://github.com/iunruh/synapse-mongo
80
- licenses: []
75
+ - test/test_helper.rb
76
+ homepage: https://github.com/ianunruh/synapse-mongo
77
+ licenses:
78
+ - Apache 2.0
79
+ metadata: {}
81
80
  post_install_message:
82
81
  rdoc_options: []
83
82
  require_paths:
84
83
  - lib
85
84
  required_ruby_version: !ruby/object:Gem::Requirement
86
- none: false
87
85
  requirements:
88
- - - ! '>='
86
+ - - '>='
89
87
  - !ruby/object:Gem::Version
90
88
  version: '0'
91
89
  required_rubygems_version: !ruby/object:Gem::Requirement
92
- none: false
93
90
  requirements:
94
- - - ! '>='
91
+ - - '>='
95
92
  - !ruby/object:Gem::Version
96
93
  version: '0'
97
94
  requirements: []
98
95
  rubyforge_project:
99
- rubygems_version: 1.8.25
96
+ rubygems_version: 2.0.3
100
97
  signing_key:
101
- specification_version: 3
98
+ specification_version: 4
102
99
  summary: MongoDB implementations for the Synapse CQRS framework
103
- test_files: []
104
- has_rdoc:
100
+ test_files:
101
+ - test/common/mongo/base_template_test.rb
102
+ - test/configuration/mongo/event_store_test.rb
103
+ - test/configuration/mongo/process_manager_test.rb
104
+ - test/event_store/mongo/event_store_test.rb
105
+ - test/process_manager/mongo/repository_test.rb
106
+ - test/serialization/converter/bson_test.rb
107
+ - test/test_helper.rb