simplestate 2.0.13 → 2.0.14

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: a2aea3285c815d588eeb10475b86dd7b5aeec43a
4
- data.tar.gz: 00acd7b4da158b9f32e32215000fd199a22159da
3
+ metadata.gz: cb832019d5d62e0188c16ac24eb823c0abe93d63
4
+ data.tar.gz: a8266817303525b961600de8c5b1910e0fc7caea
5
5
  SHA512:
6
- metadata.gz: e6035c111b8afebd7c90601550265ddb5b407b5212a6cdd441a1932328af0701546464656f98045b4a898ada83abf5f7b6b9b0f0d55de1f538e47c9423e55b78
7
- data.tar.gz: af889fca0540a62039b204c5b1b84cdd6fe40195f509413362c92a0f56b5a8575f9976fbc154debbfe85152c435382f59c297167de65abce876406902d7e1546
6
+ metadata.gz: 4db6a355b7b947d0f69d1f0c57116bc077acf0bcae84bc5f4b0c2fee024c3191f0114eb8f495734205c9cfd15705100d184f0cada0f4722a4e9ff081f85fbee3
7
+ data.tar.gz: d1a5cb98b1ade677c17784ddb58c5d02c79e7a06a10848a3a1b142465f59106e53ca396d90aa21583b3064c9427b2b3b4a3d5cf615e66b24e30d896b4811ed9c
@@ -1,8 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - "2.1.0"
4
- - "2.3.1"
5
- - rbx
4
+ - "2.2.4"
5
+ - "2.3.2"
6
6
  before_install: gem install bundler -v 1.11.2
7
7
  addons:
8
8
  code_climate:
@@ -1,3 +1,7 @@
1
+ #### SimpleState version 2.0.14
2
+ Tests with Ruby 2.3.2 pass. Removed tests with rbx. Travis-ci not yet running tests for Ruby 2.4.0preview3.
3
+
4
+
1
5
  #### SimpleState version 2.0.13
2
6
  In State and StateHolder the opts argument to initialize now defaults to nil. Descendents may use this for their own purposes. Recommend use of a configuration object or a hash to pass values via this argument.
3
7
  State no longer implements the name method. It will raise Not ImplementedError if called. State descendants must provide their own implementation.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simplestate (2.0.12)
4
+ simplestate (2.0.13)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -43,4 +43,4 @@ DEPENDENCIES
43
43
  simplestate!
44
44
 
45
45
  BUNDLED WITH
46
- 1.12.5
46
+ 1.13.6
data/README.md CHANGED
@@ -2,8 +2,10 @@
2
2
  [![Code Climate](https://codeclimate.com/github/dpneumo/simplestate/badges/gpa.svg)](https://codeclimate.com/github/dpneumo/simplestate)
3
3
  [![Build Status](https://travis-ci.org/dpneumo/simplestate.svg?branch=master)](https://travis-ci.org/dpneumo/simplestate)
4
4
  [![Test Coverage](https://codeclimate.com/github/dpneumo/simplestate/badges/coverage.svg)](https://codeclimate.com/github/dpneumo/simplestate/coverage)
5
+ [![Issue Count](https://codeclimate.com/github/dpneumo/simplestate/badges/issue_count.svg)](https://codeclimate.com/github/dpneumo/simplestate)
5
6
 
6
7
  ## Ruby Version requirement: >= 2.1.0
8
+ Tested with Rubies 2.1.0, 2.2.4 and 2.3.2
7
9
 
8
10
  # Simplestate
9
11
  ```ruby
@@ -1,3 +1,3 @@
1
1
  module Simplestate
2
- VERSION = "2.0.13"
2
+ VERSION = "2.0.14"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplestate
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.13
4
+ version: 2.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell C Kuppinger
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-09-19 00:00:00.000000000 Z
11
+ date: 2016-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
103
  version: '0'
104
104
  requirements: []
105
105
  rubyforge_project:
106
- rubygems_version: 2.5.1
106
+ rubygems_version: 2.6.8
107
107
  signing_key:
108
108
  specification_version: 4
109
109
  summary: A SimpleDelegator based implementation of the State Pattern