change_health 6.4.0 → 6.5.0
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 +14 -0
- data/change_health.gemspec +1 -0
- data/lib/change_health/response/trading_partner/trading_partners_data.rb +1 -1
- data/lib/change_health/version.rb +1 -1
- metadata +17 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e25faa14f67e75cfaa712fcb9ab50d1dba583d3c219807a10c240009124b238e
|
|
4
|
+
data.tar.gz: a3a5466560f69b008ee1f13755621865654dbccabd351b8acf1496c202f54295
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d7c3d8427e50c0491a6073cbd06060fba9ac8ebe8013105511143de127758239dc7b4db4dbc5d38e8564327f840e3f85acd05f6ae562101ded3e4a6907919af
|
|
7
|
+
data.tar.gz: 3061179186eea6f4f95d2ee7d667ee673454327264195116564cd355aa9dd21a258d7ea24b870af84efe325273b5e76b99647330b5c08831200b528072025452
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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
|
+
# [6.5.0] - 2025-11-114
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
* CI support for Ruby 3.3, 3.4
|
|
13
|
+
|
|
14
|
+
# [6.4.1] - 2025-11-05
|
|
15
|
+
|
|
16
|
+
### Bug Fix
|
|
17
|
+
|
|
18
|
+
* Doesn't throw on trading partner 'not found' response
|
|
19
|
+
|
|
8
20
|
# [6.4.0] - 2025-11-03
|
|
9
21
|
|
|
10
22
|
### Added
|
|
@@ -810,6 +822,8 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
|
810
822
|
* Authentication
|
|
811
823
|
* Configuration
|
|
812
824
|
|
|
825
|
+
[6.5.0]: https://github.com/WeInfuse/change_health/compare/v6.4.1...v6.5.0
|
|
826
|
+
[6.4.1]: https://github.com/WeInfuse/change_health/compare/v6.4.0...v6.4.1
|
|
813
827
|
[6.4.0]: https://github.com/WeInfuse/change_health/compare/v6.3.0...v6.4.0
|
|
814
828
|
[6.3.0]: https://github.com/WeInfuse/change_health/compare/v6.2.0...v6.3.0
|
|
815
829
|
[6.2.0]: https://github.com/WeInfuse/change_health/compare/v6.1.2...v6.2.0
|
data/change_health.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ module ChangeHealth
|
|
|
4
4
|
module Response
|
|
5
5
|
class TradingPartnersData < Array
|
|
6
6
|
def initialize(trading_partners)
|
|
7
|
-
super(trading_partners.map do |trading_partner|
|
|
7
|
+
super((trading_partners || []).map do |trading_partner|
|
|
8
8
|
ChangeHealth::Response::TradingPartnerData.new(trading_partner)
|
|
9
9
|
end)
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -1,15 +1,28 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: change_health
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Crockett
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: base64
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0'
|
|
13
26
|
- !ruby/object:Gem::Dependency
|
|
14
27
|
name: hashie
|
|
15
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -38,7 +51,6 @@ dependencies:
|
|
|
38
51
|
- - "~>"
|
|
39
52
|
- !ruby/object:Gem::Version
|
|
40
53
|
version: '0.21'
|
|
41
|
-
description:
|
|
42
54
|
email:
|
|
43
55
|
- mike.crockett@weinfuse.com
|
|
44
56
|
executables: []
|
|
@@ -119,7 +131,6 @@ licenses:
|
|
|
119
131
|
metadata:
|
|
120
132
|
allowed_push_host: https://rubygems.org
|
|
121
133
|
rubygems_mfa_required: 'true'
|
|
122
|
-
post_install_message:
|
|
123
134
|
rdoc_options: []
|
|
124
135
|
require_paths:
|
|
125
136
|
- lib
|
|
@@ -134,8 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
134
145
|
- !ruby/object:Gem::Version
|
|
135
146
|
version: '0'
|
|
136
147
|
requirements: []
|
|
137
|
-
rubygems_version: 3.
|
|
138
|
-
signing_key:
|
|
148
|
+
rubygems_version: 3.6.9
|
|
139
149
|
specification_version: 4
|
|
140
150
|
summary: Ruby wrapper for the ChangeHealth API
|
|
141
151
|
test_files: []
|