simplestate 2.0.10 → 2.0.11
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/.travis.yml +0 -1
- data/CHANGE_NOTES.md +7 -1
- data/Gemfile.lock +1 -1
- data/README.md +3 -1
- data/lib/simplestate/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 639f735cb621718f30583bee648cf84241044b71
|
|
4
|
+
data.tar.gz: 24d5eac5b74c04052c7b3fdc0077b6ef35d6f500
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6182c57e2952430fd713c62ef4066aaba7473686c824e9f34543986959bd814cc2140953da9e2e71f22aae9a7baf04e399ba656e3ecc3f06cd1c4753b7be2128
|
|
7
|
+
data.tar.gz: 2f67fd1908ae656b483a32f6881574478458861eadf74630eae8ddc513e9c8a2df82afeddeb9ee34a2455be0d76c5ef689fa39c56ff7e164887c65d5c5b49bd8
|
data/.travis.yml
CHANGED
data/CHANGE_NOTES.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
#### SimpleState version 2.0.11
|
|
2
|
+
Drop travis check against ruby 2.2.
|
|
3
|
+
Add tests to bring up reported test coverage to 100%. Add test coverage badge to README.
|
|
4
|
+
|
|
5
|
+
|
|
1
6
|
#### SimpleState version 2.0.10
|
|
2
|
-
Add rubocop setup. Set rubocop target ruby version to 2.3.Fix an unused method argument warning about state_holder#initialize. Set up CodeClimate test coverage reporting.
|
|
7
|
+
Add rubocop setup. Set rubocop target ruby version to 2.3. Fix an unused method argument warning about state_holder#initialize. Set up CodeClimate test coverage reporting.
|
|
8
|
+
|
|
3
9
|
|
|
4
10
|
#### SimpleState version 2.0.9
|
|
5
11
|
Make stateholder#transition_to a private method. Should have done all along. This is not representative of an event but rather a handler of the internal process of changing states.
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
[](https://badge.fury.io/rb/simplestate)
|
|
1
|
+
[](https://badge.fury.io/rb/simplestate)
|
|
2
|
+
[](https://travis-ci.org/dpneumo/simplestate)
|
|
2
3
|
[](https://codeclimate.com/github/dpneumo/simplestate)
|
|
4
|
+
[](https://codeclimate.com/github/dpneumo/simplestate/coverage)
|
|
3
5
|
|
|
4
6
|
## Ruby Version requirement: >= 2.1.0
|
|
5
7
|
|
data/lib/simplestate/version.rb
CHANGED