change_health 1.0.1 → 1.0.2
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/lib/change_health/models/eligibility_data.rb +4 -4
- data/lib/change_health/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8cfcfc82d3ec608b10581ec2e3e3ab3d9c32be70cf5bfa77c1ebfe5e8b555951
|
|
4
|
+
data.tar.gz: 2149e728393f0dfcf688a55f36130d06f89954f804b7453fe9099296323e3641
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa77cb096c2306dc05c352e8df308d508f81baea56b6a9fbfde6f0950afb5ac036ff524324acd4a002ca4a17c8b33f7f17efe1d80bc3802b5a121726caaf798e
|
|
7
|
+
data.tar.gz: b13779d73d544eb5217b6d8efbfdd7c47bb1beb6df0ab3e4c3d9f8033a78c66c979a28d12c21600c836b9433578097360c8944c3b48d9f278a6c3f075d12f5e0
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.0.2] - [2021-04-06]
|
|
8
|
+
### Added
|
|
9
|
+
- EligibilityData#recommend_retry? - fix a bug in the search statement
|
|
7
10
|
|
|
8
11
|
## [1.0.1] - [2021-03-24]
|
|
9
12
|
### Added
|
|
@@ -123,6 +126,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
123
126
|
- Authentication
|
|
124
127
|
- Configuration
|
|
125
128
|
|
|
129
|
+
[1.0.2]: https://github.com/WeInfuse/change_health/compare/v1.0.1...v1.0.2
|
|
126
130
|
[1.0.1]: https://github.com/WeInfuse/change_health/compare/v1.0.0...v1.0.1
|
|
127
131
|
[1.0.0]: https://github.com/WeInfuse/change_health/compare/v0.15.0...v1.0.0
|
|
128
132
|
[0.15.0]: https://github.com/WeInfuse/change_health/compare/v0.14.0...v0.15.0
|
|
@@ -8,9 +8,9 @@ module ChangeHealth
|
|
|
8
8
|
80
|
|
9
9
|
].freeze
|
|
10
10
|
|
|
11
|
-
NO_RESUBMIT_MESSAGES =
|
|
12
|
-
resubmission not allowed
|
|
13
|
-
do not resubmit
|
|
11
|
+
NO_RESUBMIT_MESSAGES = [
|
|
12
|
+
'resubmission not allowed',
|
|
13
|
+
'do not resubmit'
|
|
14
14
|
].freeze
|
|
15
15
|
|
|
16
16
|
def initialize(data)
|
|
@@ -90,7 +90,7 @@ module ChangeHealth
|
|
|
90
90
|
end
|
|
91
91
|
|
|
92
92
|
def recommend_retry?
|
|
93
|
-
return false
|
|
93
|
+
return false unless errors?
|
|
94
94
|
|
|
95
95
|
error_codes = errors.select(&:code?)
|
|
96
96
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: change_health
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Crockett
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-04-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -128,7 +128,7 @@ dependencies:
|
|
|
128
128
|
- - "~>"
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
130
|
version: '0.9'
|
|
131
|
-
description:
|
|
131
|
+
description:
|
|
132
132
|
email:
|
|
133
133
|
- mike.crockett@weinfuse.com
|
|
134
134
|
executables: []
|
|
@@ -165,7 +165,7 @@ licenses:
|
|
|
165
165
|
- MIT
|
|
166
166
|
metadata:
|
|
167
167
|
allowed_push_host: https://rubygems.org
|
|
168
|
-
post_install_message:
|
|
168
|
+
post_install_message:
|
|
169
169
|
rdoc_options: []
|
|
170
170
|
require_paths:
|
|
171
171
|
- lib
|
|
@@ -180,8 +180,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
180
180
|
- !ruby/object:Gem::Version
|
|
181
181
|
version: '0'
|
|
182
182
|
requirements: []
|
|
183
|
-
rubygems_version: 3.
|
|
184
|
-
signing_key:
|
|
183
|
+
rubygems_version: 3.2.15
|
|
184
|
+
signing_key:
|
|
185
185
|
specification_version: 4
|
|
186
186
|
summary: Ruby wrapper for the ChangeHealth API
|
|
187
187
|
test_files: []
|