change_health 5.8.0 → 5.8.1

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
  SHA256:
3
- metadata.gz: 4a22670dd997245072215efbd6d3b597e465800767b120b37a0fa8a480c775c7
4
- data.tar.gz: a05c3f55926ce3430f24e83fe241b1c201a628e1ff367e7f8afda8d82edf1442
3
+ metadata.gz: f0bf0c65663038f50cad4015b808443f1ed0f1d157021568b377358a9d5226aa
4
+ data.tar.gz: f741f92c0e951b8b8b65c10f2a3cad24dec9d211d13684d64351a3504cb1666f
5
5
  SHA512:
6
- metadata.gz: 4fee7e348ba8663eadefa445717cb09e5beb5a303ed1ca6316730c6b2592a8313861c6a42e62568be4270b8f1a9082d34365bfad3f45b22bb17f1e256a39956b
7
- data.tar.gz: e2bfe19dc884ef8319236aff998968e9e76d3c1200730f6d92c1fe489d08be35735bc69142bfb131a4a161afda88d568a001e267aac15fc9ec5b8ef708a0bc97
6
+ metadata.gz: 339019aae2ac50da301e079790af4179ee84502ae2253d6d0502ae06832e6bf7747006298fe10f9ce26816bdee53272b84308f21970278762be8a343e0fffdad
7
+ data.tar.gz: d222cbb2ffd4613fe0abd532cda576b95b5816611af2537ff1877d6be59cc32243a030038fbd1bb778185e4b1b57e07bdb6bde99520b1a5d7e8f0e98e31586f2
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
 
8
+ # [5.8.1] - 2024-04-02
9
+
10
+ ### Fixed
11
+
12
+ ChangeHealth::Response::Error is retryable for retryable codes that do not have a followup action.
13
+ Previously, a followup action was required to be retryable.
14
+
8
15
  # [5.8.0] - 2024-03-25
9
16
 
10
17
  ### Added
@@ -625,6 +632,7 @@ Added the ability to hit professional claim submission API. For more details, se
625
632
  * Authentication
626
633
  * Configuration
627
634
 
635
+ [5.8.1]: https://github.com/WeInfuse/change_health/compare/v5.8.0...v5.8.1
628
636
  [5.8.0]: https://github.com/WeInfuse/change_health/compare/v5.7.0...v5.8.0
629
637
  [5.7.0]: https://github.com/WeInfuse/change_health/compare/v5.6.0...v5.7.0
630
638
  [5.6.0]: https://github.com/WeInfuse/change_health/compare/v5.5.0...v5.6.0
@@ -39,9 +39,7 @@ module ChangeHealth
39
39
 
40
40
  def retryable?
41
41
  represents_down? ||
42
- (code? && SIMPLE_RETRY_CODES.include?(code) && followupAction? && NO_RESUBMIT_MESSAGES.none? do |msg|
43
- followupAction.downcase.include?(msg)
44
- end)
42
+ (code? && SIMPLE_RETRY_CODES.include?(code) && can_follow_up?)
45
43
  end
46
44
 
47
45
  %w[field description code followupAction location].each do |method_name|
@@ -53,6 +51,16 @@ module ChangeHealth
53
51
  @data[method_name]
54
52
  end
55
53
  end
54
+
55
+ private
56
+
57
+ def can_follow_up?
58
+ return true if followupAction.nil? || followupAction.empty?
59
+
60
+ followupAction? && NO_RESUBMIT_MESSAGES.none? do |msg|
61
+ followupAction.downcase.include?(msg)
62
+ end
63
+ end
56
64
  end
57
65
  end
58
66
  end
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '5.8.0'.freeze
2
+ VERSION = '5.8.1'.freeze
3
3
  end
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: 5.8.0
4
+ version: 5.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-25 00:00:00.000000000 Z
11
+ date: 2024-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -221,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
221
221
  - !ruby/object:Gem::Version
222
222
  version: '0'
223
223
  requirements: []
224
- rubygems_version: 3.1.6
224
+ rubygems_version: 3.0.3.1
225
225
  signing_key:
226
226
  specification_version: 4
227
227
  summary: Ruby wrapper for the ChangeHealth API