rails_event_store_active_record 0.5.1 → 0.6.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 +4 -0
- data/CONTRIBUTING.md +27 -0
- data/Makefile +17 -0
- data/README.md +4 -11
- data/lib/rails_event_store_active_record/version.rb +1 -1
- data/rails_event_store_active_record.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6fe3024ffd2271448b0477f4fc758f0f064c15d9
|
|
4
|
+
data.tar.gz: 29742e95da28593de6008b841e147e7ff751bdfa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d723612c42148572c2d9d95803be0a7de0ed28513110327049778b3d4c6be1177be24cf1d85631d980be086c26490dff0ab7cdff466e5e3e11997e2c474ceae4
|
|
7
|
+
data.tar.gz: 94ea9a41e93e73bb64b201353cb1ff3c8117ceb604962b4ba17541ca42e2349f5a33fcf2366753772b299ca6d4f35ccc400e6992fbf496f0ce6b9c310761473d
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Contributing to RailsEventStoreActiveRecord
|
|
2
|
+
|
|
3
|
+
Any kind of contribution is welcomed. Here is a few guidelines that we need contributors to follow.
|
|
4
|
+
|
|
5
|
+
## Found a bug? Have a question?
|
|
6
|
+
|
|
7
|
+
* [Create a new issue](https://github.com/arkency/rails_event_store_active_record/issues/new), assuming one does not already exist.
|
|
8
|
+
* Clearly describe the issue including steps to reproduce when it is a bug.
|
|
9
|
+
* If possible provide a Pull Request with failing test case.
|
|
10
|
+
|
|
11
|
+
## Getting Started
|
|
12
|
+
|
|
13
|
+
* Make sure you have a [GitHub account](https://github.com/signup/free).
|
|
14
|
+
* [Fork the repository](https://help.github.com/articles/fork-a-repo/) on GitHub.
|
|
15
|
+
|
|
16
|
+
## Making Changes
|
|
17
|
+
|
|
18
|
+
* Create a feature branch from where you want to base your work.
|
|
19
|
+
* Do your work. Please try to keep your commits small and focussed.
|
|
20
|
+
* Make sure you have added the necessary tests for your changes.
|
|
21
|
+
* Push your changes to a feature branch in your fork of the repository.
|
|
22
|
+
* Submit a pull request to the RailsEventStore repository.
|
|
23
|
+
|
|
24
|
+
# Additional Resources
|
|
25
|
+
|
|
26
|
+
* [General GitHub documentation](http://help.github.com/)
|
|
27
|
+
* [GitHub pull request documentation](http://help.github.com/send-pull-requests/)
|
data/Makefile
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
install-bundler: ## Install gem dependencies
|
|
2
|
+
@echo "Installing gem dependencies"
|
|
3
|
+
@bundle install
|
|
4
|
+
|
|
5
|
+
install: install-bundler ## Prepare current development environment
|
|
6
|
+
|
|
7
|
+
test: ## Run tests
|
|
8
|
+
@echo "Running basic tests - beware: this won't guarantee build pass"
|
|
9
|
+
@bundle exec rspec
|
|
10
|
+
|
|
11
|
+
.PHONY: help
|
|
12
|
+
|
|
13
|
+
help:
|
|
14
|
+
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
15
|
+
|
|
16
|
+
.DEFAULT_GOAL := help
|
|
17
|
+
|
data/README.md
CHANGED
|
@@ -9,20 +9,13 @@
|
|
|
9
9
|
A Active Record based implementation of events repository for [Rails Event Store](http://github.com/arkency/rails_event_store).
|
|
10
10
|
It is a default events repository used by RailsEventStore.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
# Documentation
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
All documentation and sample codes are available at [http://railseventstore.arkency.com](http://railseventstore.arkency.com)
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
gem 'rails_event_store_active_record'
|
|
18
|
-
```
|
|
16
|
+
# Contributing
|
|
19
17
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
```ruby
|
|
23
|
-
rails generate rails_event_store_active_record:migration
|
|
24
|
-
rake db:migrate
|
|
25
|
-
```
|
|
18
|
+
Check the contribution guide on [CONTRIBUTING.md](https://github.com/arkency/rails_event_store_active_record/blob/master/CONTRIBUTING.md)
|
|
26
19
|
|
|
27
20
|
## About
|
|
28
21
|
|
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
spec.add_development_dependency 'rails', '~> 4.2'
|
|
26
26
|
spec.add_development_dependency 'sqlite3'
|
|
27
27
|
|
|
28
|
-
spec.add_dependency 'ruby_event_store', '~> 0.
|
|
28
|
+
spec.add_dependency 'ruby_event_store', '~> 0.6.0'
|
|
29
29
|
spec.add_dependency 'activesupport', '>= 3.0'
|
|
30
30
|
spec.add_dependency 'activemodel', '>= 3.0'
|
|
31
31
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_event_store_active_record
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- gottfrois
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-05-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -101,14 +101,14 @@ dependencies:
|
|
|
101
101
|
requirements:
|
|
102
102
|
- - "~>"
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: 0.
|
|
104
|
+
version: 0.6.0
|
|
105
105
|
type: :runtime
|
|
106
106
|
prerelease: false
|
|
107
107
|
version_requirements: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements:
|
|
109
109
|
- - "~>"
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
|
-
version: 0.
|
|
111
|
+
version: 0.6.0
|
|
112
112
|
- !ruby/object:Gem::Dependency
|
|
113
113
|
name: activesupport
|
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -150,8 +150,10 @@ files:
|
|
|
150
150
|
- ".rspec"
|
|
151
151
|
- ".travis.yml"
|
|
152
152
|
- CHANGELOG.md
|
|
153
|
+
- CONTRIBUTING.md
|
|
153
154
|
- Gemfile
|
|
154
155
|
- LICENSE.txt
|
|
156
|
+
- Makefile
|
|
155
157
|
- README.md
|
|
156
158
|
- Rakefile
|
|
157
159
|
- bin/console
|