rails_event_store_active_record 0.6.2 → 0.6.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a9bd34aa9b8a5b06a3790ba18002382120b3a97e
4
- data.tar.gz: c6b3b67ebee589ccc7fd42efd0b3ea4f72b7d733
3
+ metadata.gz: 1cd5117e401628b12bf910c847b50c2e5d259eac
4
+ data.tar.gz: a5909f564d6e8daec7642045688b67ec56ec746f
5
5
  SHA512:
6
- metadata.gz: 1d60899d82cc644a010eed5e3f22a33c9555d4638d1fb51b365c59c2af75b2c9471d3f8cfa0e27a8ca63b78c57be78f3446198b086410d664f0d65ee5902f285
7
- data.tar.gz: 3be5b7a314691b3be41926225ca34a165815570a63efda0fe5a8854f7032b7315b691cd604410f128efc730726d9995e4dc69a3a1a5f2ef3a87e5a7f5773d3ff
6
+ metadata.gz: c84fcbc4f1ad34b65a6411b8429acd14aead6f663492055364df4f0ac10516fdb55134fe5eb06b68bdc8ee1cd2acd4abe248f2c281aa4cfeaa9f4cde6c668d81
7
+ data.tar.gz: 2c4b52aa00eeae05eec246f29bcbbeca4749735bee8dd53376c141a5aff6ff4f67693ae9b27eba4e2cbea4e721eaf2ae289578946b3e7d50bf6f4d67de0953f0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 0.6.3 (24.06.2016)
2
+
3
+ * Change: ruby_event_store updated to 0.9.0 (Call instead of handle_event)
4
+ * Fix: Clarify Licensing information
5
+
1
6
  ### 0.6.2 (21.06.2016)
2
7
 
3
8
  * ruby_event_store updated to 0.8.0
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Pierre-Louis Gottfrois
3
+ Copyright (c) 2015 Arkency
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +9,14 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
9
  copies of the Software, and to permit persons to whom the Software is
10
10
  furnished to do so, subject to the following conditions:
11
11
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
14
 
15
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
17
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
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
21
- THE SOFTWARE.
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -1,3 +1,3 @@
1
1
  module RailsEventStoreActiveRecord
2
- VERSION = "0.6.2"
2
+ VERSION = "0.6.3"
3
3
  end
@@ -6,8 +6,9 @@ require 'rails_event_store_active_record/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'rails_event_store_active_record'
8
8
  spec.version = RailsEventStoreActiveRecord::VERSION
9
- spec.authors = ['gottfrois', 'mpraglowski']
10
- spec.email = ['tomek.rybka@gmail.com', 'm@praglowski.com']
9
+ spec.licenses = ['MIT']
10
+ spec.authors = ['Arkency']
11
+ spec.email = ['dev@arkency.com']
11
12
 
12
13
  spec.summary = %q{Active Record events repository for Rails Event Store}
13
14
  spec.description = %q{Implementation of events repository based on Rails Active Record for Rails Event Store'}
@@ -25,7 +26,7 @@ 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.8.0'
29
+ spec.add_dependency 'ruby_event_store', '~> 0.9.0'
29
30
  spec.add_dependency 'activesupport', '>= 3.0'
30
31
  spec.add_dependency 'activemodel', '>= 3.0'
31
32
 
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_event_store_active_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
- - gottfrois
8
- - mpraglowski
7
+ - Arkency
9
8
  autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2016-06-21 00:00:00.000000000 Z
11
+ date: 2016-06-24 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: bundler
@@ -101,14 +100,14 @@ dependencies:
101
100
  requirements:
102
101
  - - "~>"
103
102
  - !ruby/object:Gem::Version
104
- version: 0.8.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.8.0
110
+ version: 0.9.0
112
111
  - !ruby/object:Gem::Dependency
113
112
  name: activesupport
114
113
  requirement: !ruby/object:Gem::Requirement
@@ -140,8 +139,7 @@ dependencies:
140
139
  description: Implementation of events repository based on Rails Active Record for
141
140
  Rails Event Store'
142
141
  email:
143
- - tomek.rybka@gmail.com
144
- - m@praglowski.com
142
+ - dev@arkency.com
145
143
  executables: []
146
144
  extensions: []
147
145
  extra_rdoc_files: []
@@ -152,7 +150,7 @@ files:
152
150
  - CHANGELOG.md
153
151
  - CONTRIBUTING.md
154
152
  - Gemfile
155
- - LICENSE.txt
153
+ - LICENSE
156
154
  - Makefile
157
155
  - README.md
158
156
  - Rakefile
@@ -166,7 +164,8 @@ files:
166
164
  - lib/rails_event_store_active_record/version.rb
167
165
  - rails_event_store_active_record.gemspec
168
166
  homepage: https://github.com/arkency/rails_event_store_active_record
169
- licenses: []
167
+ licenses:
168
+ - MIT
170
169
  metadata: {}
171
170
  post_install_message:
172
171
  rdoc_options: []