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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 18a6a4aeb5d7a7201bd8b334975a96ccc5a17d64
4
- data.tar.gz: 9b17fef13b091bf33fd9e0c2922a3b776deaaa72
3
+ metadata.gz: 639f735cb621718f30583bee648cf84241044b71
4
+ data.tar.gz: 24d5eac5b74c04052c7b3fdc0077b6ef35d6f500
5
5
  SHA512:
6
- metadata.gz: 84a66ac95edb2edfdd5dd3e90979bfee6948fb4ae193a9035e8173f15cdceedbef578654a66771ebb3ab03d611e56bd5356dbcbdf7b3eaa63755ca767c485776
7
- data.tar.gz: 27c5b008d746f75da84f64ddf9f1197e7a05e5871ff157a66af0d811fab802da622618d46689a0e357f204536a29252f1600f2560b5de2ab9466f0a1151e9d07
6
+ metadata.gz: 6182c57e2952430fd713c62ef4066aaba7473686c824e9f34543986959bd814cc2140953da9e2e71f22aae9a7baf04e399ba656e3ecc3f06cd1c4753b7be2128
7
+ data.tar.gz: 2f67fd1908ae656b483a32f6881574478458861eadf74630eae8ddc513e9c8a2df82afeddeb9ee34a2455be0d76c5ef689fa39c56ff7e164887c65d5c5b49bd8
data/.travis.yml CHANGED
@@ -1,7 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - "2.1.0"
4
- - "2.2.3"
5
4
  - "2.3.1"
6
5
  - rbx
7
6
  before_install: gem install bundler -v 1.11.2
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simplestate (2.0.9)
4
+ simplestate (2.0.10)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
- [![Gem Version](https://badge.fury.io/rb/simplestate.svg)](https://badge.fury.io/rb/simplestate) [![Build Status](https://travis-ci.org/dpneumo/simplestate.svg?branch=master)](https://travis-ci.org/dpneumo/simplestate)
1
+ [![Gem Version](https://badge.fury.io/rb/simplestate.svg)](https://badge.fury.io/rb/simplestate)
2
+ [![Build Status](https://travis-ci.org/dpneumo/simplestate.svg?branch=master)](https://travis-ci.org/dpneumo/simplestate)
2
3
  [![Code Climate](https://codeclimate.com/github/dpneumo/simplestate/badges/gpa.svg)](https://codeclimate.com/github/dpneumo/simplestate)
4
+ [![Test Coverage](https://codeclimate.com/github/dpneumo/simplestate/badges/coverage.svg)](https://codeclimate.com/github/dpneumo/simplestate/coverage)
3
5
 
4
6
  ## Ruby Version requirement: >= 2.1.0
5
7
 
@@ -1,3 +1,3 @@
1
1
  module Simplestate
2
- VERSION = "2.0.10"
2
+ VERSION = "2.0.11"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplestate
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.10
4
+ version: 2.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell C Kuppinger