rails_event_store 0.8.0 → 0.9.0
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/CHANGELOG.md +6 -0
- data/LICENSE +21 -4
- data/lib/rails_event_store/version.rb +1 -1
- data/rails_event_store.gemspec +6 -5
- metadata +12 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1be1142805a46757f50e281227cd6a2830bc6282
|
|
4
|
+
data.tar.gz: 70887501b0e6949f26860feedc15c9650cff9b74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5925539c361fbd6d185c19001c365a7139e07d1034ddf2314f190276733aa9dfead52721eae7e8f37fca9d4f4364d52372df2637cc675484ccd37b34faca9f11
|
|
7
|
+
data.tar.gz: f2c788c60742f25be64c12f93603425bf1e7f2bd23b03a2df083ab5bb9e21a0c43dcfd89efbed88c8ea4f018e86a177614fb348bfdc82d4d62d80f3246d34d46
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
### 0.9.0 (24.06.2016)
|
|
2
|
+
|
|
3
|
+
* Change: ruby_event_store updated to 0.9.0 (Call instead of handle_event)
|
|
4
|
+
* Change: aggregate_root updated to 0.3.1 (licensing info)
|
|
5
|
+
* Fix: Clarify Licensing terms #36 - MIT licence it is from now
|
|
6
|
+
|
|
1
7
|
### 0.8.0 (21.06.2016)
|
|
2
8
|
|
|
3
9
|
* Change: ruby_event_store updated to 0.8.0 (dynamic subscriptions)
|
data/LICENSE
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 Arkency
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
2
22
|
|
|
3
|
-
Rails EventStore is an Open Source project licensed under the terms of
|
|
4
|
-
the LGPLv3 license. Please see <http://www.gnu.org/licenses/lgpl-3.0.html>
|
|
5
|
-
for license text.
|
data/rails_event_store.gemspec
CHANGED
|
@@ -6,8 +6,9 @@ require 'rails_event_store/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'rails_event_store'
|
|
8
8
|
spec.version = RailsEventStore::VERSION
|
|
9
|
-
spec.
|
|
10
|
-
spec.
|
|
9
|
+
spec.licenses = ['MIT']
|
|
10
|
+
spec.authors = ['Arkency']
|
|
11
|
+
spec.email = ['dev@arkency.com']
|
|
11
12
|
|
|
12
13
|
spec.summary = %q{Event Store in Ruby}
|
|
13
14
|
spec.description = %q{Implementation of Event Store in Ruby}
|
|
@@ -25,9 +26,9 @@ Gem::Specification.new do |spec|
|
|
|
25
26
|
spec.add_development_dependency 'rails', '~> 4.2'
|
|
26
27
|
spec.add_development_dependency 'sqlite3'
|
|
27
28
|
|
|
28
|
-
spec.add_dependency 'ruby_event_store', '~> 0.
|
|
29
|
-
spec.add_dependency 'rails_event_store_active_record', '~> 0.6.
|
|
30
|
-
spec.add_dependency 'aggregate_root', '~> 0.3.
|
|
29
|
+
spec.add_dependency 'ruby_event_store', '~> 0.9.0'
|
|
30
|
+
spec.add_dependency 'rails_event_store_active_record', '~> 0.6.3'
|
|
31
|
+
spec.add_dependency 'aggregate_root', '~> 0.3.1'
|
|
31
32
|
spec.add_dependency 'activesupport', '>= 3.0'
|
|
32
33
|
spec.add_dependency 'activemodel', '>= 3.0'
|
|
33
34
|
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_event_store
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
- mpraglowski
|
|
7
|
+
- Arkency
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: exe
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2016-06-
|
|
11
|
+
date: 2016-06-24 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: bundler
|
|
@@ -101,42 +100,42 @@ dependencies:
|
|
|
101
100
|
requirements:
|
|
102
101
|
- - "~>"
|
|
103
102
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: 0.
|
|
103
|
+
version: 0.9.0
|
|
105
104
|
type: :runtime
|
|
106
105
|
prerelease: false
|
|
107
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
108
107
|
requirements:
|
|
109
108
|
- - "~>"
|
|
110
109
|
- !ruby/object:Gem::Version
|
|
111
|
-
version: 0.
|
|
110
|
+
version: 0.9.0
|
|
112
111
|
- !ruby/object:Gem::Dependency
|
|
113
112
|
name: rails_event_store_active_record
|
|
114
113
|
requirement: !ruby/object:Gem::Requirement
|
|
115
114
|
requirements:
|
|
116
115
|
- - "~>"
|
|
117
116
|
- !ruby/object:Gem::Version
|
|
118
|
-
version: 0.6.
|
|
117
|
+
version: 0.6.3
|
|
119
118
|
type: :runtime
|
|
120
119
|
prerelease: false
|
|
121
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
122
121
|
requirements:
|
|
123
122
|
- - "~>"
|
|
124
123
|
- !ruby/object:Gem::Version
|
|
125
|
-
version: 0.6.
|
|
124
|
+
version: 0.6.3
|
|
126
125
|
- !ruby/object:Gem::Dependency
|
|
127
126
|
name: aggregate_root
|
|
128
127
|
requirement: !ruby/object:Gem::Requirement
|
|
129
128
|
requirements:
|
|
130
129
|
- - "~>"
|
|
131
130
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: 0.3.
|
|
131
|
+
version: 0.3.1
|
|
133
132
|
type: :runtime
|
|
134
133
|
prerelease: false
|
|
135
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
136
135
|
requirements:
|
|
137
136
|
- - "~>"
|
|
138
137
|
- !ruby/object:Gem::Version
|
|
139
|
-
version: 0.3.
|
|
138
|
+
version: 0.3.1
|
|
140
139
|
- !ruby/object:Gem::Dependency
|
|
141
140
|
name: activesupport
|
|
142
141
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -167,8 +166,7 @@ dependencies:
|
|
|
167
166
|
version: '3.0'
|
|
168
167
|
description: Implementation of Event Store in Ruby
|
|
169
168
|
email:
|
|
170
|
-
-
|
|
171
|
-
- m@praglowski.com
|
|
169
|
+
- dev@arkency.com
|
|
172
170
|
executables: []
|
|
173
171
|
extensions: []
|
|
174
172
|
extra_rdoc_files: []
|
|
@@ -189,7 +187,8 @@ files:
|
|
|
189
187
|
- rails_event_store.gemspec
|
|
190
188
|
- tmp/.keep
|
|
191
189
|
homepage: https://github.com/arkency/rails_event_store
|
|
192
|
-
licenses:
|
|
190
|
+
licenses:
|
|
191
|
+
- MIT
|
|
193
192
|
metadata: {}
|
|
194
193
|
post_install_message:
|
|
195
194
|
rdoc_options: []
|