rails_event_store_active_record 0.5.1 → 0.6.0

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: 872777e868eab1ff8bbf419047b5c2fbc94c3539
4
- data.tar.gz: 34b6f5b935ce591e036dde2fea57c1c555292b74
3
+ metadata.gz: 6fe3024ffd2271448b0477f4fc758f0f064c15d9
4
+ data.tar.gz: 29742e95da28593de6008b841e147e7ff751bdfa
5
5
  SHA512:
6
- metadata.gz: 9d8ddf578244c3a9d5e776ab05e9bc538c6ed691b127b9d1c00e1e2213b8bcd9c57e73964d642deef7ed63d96ac0b5840fd7956d736700ac0bd74a85d7172c85
7
- data.tar.gz: 0844785e4261d05aeab72d86012e7d3edc64a45b96007447170a07fcdba5f0ab3801982d6d897fa9ecfe68048e9ce3665a4c9582c2f70f343b9032a4edb36f06
6
+ metadata.gz: d723612c42148572c2d9d95803be0a7de0ed28513110327049778b3d4c6be1177be24cf1d85631d980be086c26490dff0ab7cdff466e5e3e11997e2c474ceae4
7
+ data.tar.gz: 94ea9a41e93e73bb64b201353cb1ff3c8117ceb604962b4ba17541ca42e2349f5a33fcf2366753772b299ca6d4f35ccc400e6992fbf496f0ce6b9c310761473d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.6.0 (25.05.2016)
2
+
3
+ * ruby_event_store updated to 0.6.0
4
+
1
5
  ### 0.5.1 (11.04.2016)
2
6
 
3
7
  * Change: Rename migration generator from 'migrate' to 'migration' PR #3
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
- ## Installation
12
+ # Documentation
13
13
 
14
- * Add following line to your application's Gemfile:
14
+ All documentation and sample codes are available at [http://railseventstore.arkency.com](http://railseventstore.arkency.com)
15
15
 
16
- ```ruby
17
- gem 'rails_event_store_active_record'
18
- ```
16
+ # Contributing
19
17
 
20
- * Use provided task to generate a table to store events in you DB.
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
 
@@ -1,3 +1,3 @@
1
1
  module RailsEventStoreActiveRecord
2
- VERSION = "0.5.1"
2
+ VERSION = "0.6.0"
3
3
  end
@@ -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.5.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.5.1
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-04-11 00:00:00.000000000 Z
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.5.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.5.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