active_domain 0.5.0.pre2 → 0.5.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -2
- data/lib/active_domain/version.rb +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 98c3885f692f03ea2b226a9f83163d1a1b486f0e
|
|
4
|
+
data.tar.gz: 0c05b19678c489a3ede982158873928c96fb8f28
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbf262cf8c5904c5605e75b7aae0fc3c173c89b6573bf1c3d769c141c565ba67284a90a8965019fb24eab0a1b213bc96b156b71bd3b566d109f45cda055b3ec4
|
|
7
|
+
data.tar.gz: f23f987ec9c0a1f0c5d063f9768def0dc1e4a24fb1d39417e79760e95fbd7248dbbc8aa9aeddcbde8d084ed6a12d890aaf67a8fb72173bb0407dc68133318b5a
|
data/README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Active Domain
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A framework that allows to write a domain server, that processes commands and creates events.
|
|
4
|
+
|
|
5
|
+
You should have exactly one domain server for your Rails Disco applications.
|
|
6
|
+
The domain runs in a domain specific database environment. This helps to make sure no other process interferes with the domain.
|
|
7
|
+
|
|
8
|
+
Have a look at the [rails-disco](https://github.com/hicknhack-software/rails-disco/wiki) documentation on Github for more details.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_domain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.0.
|
|
4
|
+
version: 0.5.0.rc1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- HicknHack Software
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-03-
|
|
11
|
+
date: 2014-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: active_event
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.5.0.
|
|
19
|
+
version: 0.5.0.rc1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.5.0.
|
|
26
|
+
version: 0.5.0.rc1
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: activerecord
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -134,7 +134,13 @@ dependencies:
|
|
|
134
134
|
- - '>='
|
|
135
135
|
- !ruby/object:Gem::Version
|
|
136
136
|
version: '0'
|
|
137
|
-
description:
|
|
137
|
+
description: |2
|
|
138
|
+
A framework that allows to write a domain server, that processes commands and creates events.
|
|
139
|
+
|
|
140
|
+
You should have exactly one domain server for your Rails Disco applications.
|
|
141
|
+
The domain runs in a domain specific database environment. This helps to make sure no other process interferes with the domain.
|
|
142
|
+
|
|
143
|
+
Have a look at the rails-disco documentation on Github for more details.
|
|
138
144
|
email: rails-disco@hicknhack-software.com
|
|
139
145
|
executables: []
|
|
140
146
|
extensions: []
|
|
@@ -182,7 +188,7 @@ rubyforge_project:
|
|
|
182
188
|
rubygems_version: 2.1.11
|
|
183
189
|
signing_key:
|
|
184
190
|
specification_version: 4
|
|
185
|
-
summary: Domain
|
|
191
|
+
summary: Domain specifics for the Rails Disco
|
|
186
192
|
test_files:
|
|
187
193
|
- spec/lib/command_processor_spec.rb
|
|
188
194
|
- spec/lib/projection_registry_spec.rb
|