eligible 3.1.0.beta1 → 3.1.0.beta2
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 +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +18 -0
- data/lib/eligible/version.rb +1 -1
- data/lib/eligible.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0799823ed47cbcd1032eed9457d1aa40f7c3a02afecd08544827d7ffcb7702e0'
|
|
4
|
+
data.tar.gz: f877f36237ad196781e72796c7c5e12f408c12c1eb4d593b3c394a37826b891f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 070e45a7b71b25a041ef4ba347131b444884fa15a096329d6b38294cda25f570837ea90e2f24a58b560fef417e18824babf0730fa0d38b2e20c544e1470a4414
|
|
7
|
+
data.tar.gz: dd3b20716f68df7fcaf1c7ced58319117f78b5a470fc26e09efddab1c423834e0c9dc9dab71d623d53d2d4f3cc532b604db43bfa8c1fe730e2497c139612aeef
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -6,6 +6,24 @@
|
|
|
6
6
|
|
|
7
7
|
Ruby bindings for the [Eligible API](https://eligible.com/rest)
|
|
8
8
|
|
|
9
|
+
### IMPORTANT NOTES
|
|
10
|
+
|
|
11
|
+
We are maintaining two active branches for `eligible` gem
|
|
12
|
+
|
|
13
|
+
#### 1. `master` branch
|
|
14
|
+
|
|
15
|
+
1. It has the following two additional changes when compared with the `releasev2` branch
|
|
16
|
+
* Support for V1 API (Eligible objects such as Patients, Insurance Policies, Verification, etc.)
|
|
17
|
+
* Support for Ruby 3.1.0
|
|
18
|
+
2. Eligible apps (for example, GDS, Patients, etc.) are using gem versions published from this branch.
|
|
19
|
+
3. Do not merge/rebase these changes with the `releasev2` branch directly without performing proper testing because this branch has breaking changes(for example, it may not work with Ruby 2.X.X)
|
|
20
|
+
|
|
21
|
+
#### 2. `releasev2` branch
|
|
22
|
+
|
|
23
|
+
1. Eligible customers are using gem versions published from this branch.
|
|
24
|
+
2. Whenever we rotate SSL keys, we update fingerprints and force our customers to upgrade the `eligible` gem. So When you make changes to the branch, ensure those changes do not break existing customers.
|
|
25
|
+
|
|
26
|
+
|
|
9
27
|
## Installation
|
|
10
28
|
|
|
11
29
|
Add this line to your application's Gemfile:
|
data/lib/eligible/version.rb
CHANGED
data/lib/eligible.rb
CHANGED
|
@@ -92,7 +92,8 @@ module Eligible
|
|
|
92
92
|
@@test = false
|
|
93
93
|
@@api_version = '1.5'
|
|
94
94
|
@@api_base = "https://gds.eligibleapi.com/v#{@@api_version}"
|
|
95
|
-
@@fingerprints = %w(
|
|
95
|
+
@@fingerprints = %w(1a1b7d4faa43ecdeab40cc8d203583624d5917f4
|
|
96
|
+
b4225ee59dc7ede4d68e7b2c75c6e6ac79649416
|
|
96
97
|
75132c1ab844500c6ad1f26b49c11d36933ce868
|
|
97
98
|
1c3fe254bded256ea30d0a235bb9881b82701082
|
|
98
99
|
a1cd762a9f4be0f3b6bdd6300e52c6ce8d7d67f5
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eligible
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.0.
|
|
4
|
+
version: 3.1.0.beta2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katelyn Gleaon
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2023-01-17 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rest-client
|