event-sourcing 0.2.1.pre → 0.3.1.pre

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96d248391ed71d7e3a56d1d3107a4e488d514f4c20182103148d576738927f76
4
- data.tar.gz: '09e0513bf3f06d9a86b28f4bd0b4c17eccf47ca9a0534b58a30769c0618f7608'
3
+ metadata.gz: 4e92a9393acf371e129d94e8a789051dd8cc59748e0c27fd3ccf8f0256902c81
4
+ data.tar.gz: 111bbcaa8311f65c21b46e7f02c1619b9bb1a62c52479001a51fb6fefcea76fd
5
5
  SHA512:
6
- metadata.gz: 66c4b323e9407d45255ce6426938b99e042d6317cf261ae2830e77211193f8e52dbd8644f64eac81f79711634ba10d709303d94dc2c4e2f67c2f57f9058b8c9f
7
- data.tar.gz: 1f2c26f0c09b58014279426fe97f0e39833049e96208621006ed93a0d297d6dd2fb85c55baaf09caaf2204033ef2eb23180f1d3a2f67e4b6cb497ca0912ce70c
6
+ metadata.gz: ae806937271e3050069b46e8fd906c019bb2e879f582c4bd67aaf54548d080d430b82161c8d9e5d2655bbd6720dcb9767400d6045c263933c119f59b3ecf45de
7
+ data.tar.gz: '094a01faafbc98176c346f2d893ddae1e2d8ce398291a8e5821b6d65e9633629816cca9a320ba236a993cbfd852061a65e25e95baca5227029d53bf04a365be3'
@@ -0,0 +1,3 @@
1
+ require "event_sourcing"
2
+ require "event_sourcing/active_record/command"
3
+ require "event_sourcing/active_record/event"
@@ -1,6 +1,6 @@
1
1
  module EventSourcing
2
- module Rails
3
- module CommandRecord
2
+ module ActiveRecord
3
+ module Command
4
4
  extend ActiveSupport::Concern
5
5
 
6
6
  included do
@@ -1,6 +1,6 @@
1
1
  module EventSourcing
2
- module Rails
3
- module EventRecord
2
+ module ActiveRecord
3
+ module Event
4
4
  extend ActiveSupport::Concern
5
5
 
6
6
  class_methods do
@@ -1,3 +1,3 @@
1
1
  module EventSourcing
2
- VERSION = "0.2.1.pre"
2
+ VERSION = "0.3.1.pre"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: event-sourcing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1.pre
4
+ version: 0.3.1.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Conversation Dev Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-28 00:00:00.000000000 Z
11
+ date: 2018-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -93,12 +93,12 @@ extensions: []
93
93
  extra_rdoc_files: []
94
94
  files:
95
95
  - lib/event_sourcing.rb
96
+ - lib/event_sourcing/active_record.rb
97
+ - lib/event_sourcing/active_record/command.rb
98
+ - lib/event_sourcing/active_record/event.rb
96
99
  - lib/event_sourcing/command.rb
97
100
  - lib/event_sourcing/event.rb
98
101
  - lib/event_sourcing/event_dispatcher.rb
99
- - lib/event_sourcing/rails.rb
100
- - lib/event_sourcing/rails/command_record.rb
101
- - lib/event_sourcing/rails/event_record.rb
102
102
  - lib/event_sourcing/version.rb
103
103
  homepage: https://github.com/conversation/event-sourcing
104
104
  licenses:
@@ -1,3 +0,0 @@
1
- require "event_sourcing"
2
- require "event_sourcing/rails/command_record"
3
- require "event_sourcing/rails/event_record"