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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3aeb6336ce4a8b2bd31afea5fc7fddde359ab52f922e91a2015ecf870388e5ae
4
- data.tar.gz: 022fb21e622e9031f946da58dc466648fe8a0c941078982167d8f9223fd569ef
3
+ metadata.gz: '0799823ed47cbcd1032eed9457d1aa40f7c3a02afecd08544827d7ffcb7702e0'
4
+ data.tar.gz: f877f36237ad196781e72796c7c5e12f408c12c1eb4d593b3c394a37826b891f
5
5
  SHA512:
6
- metadata.gz: a9be55e34f6d5c70fa2ee8afb258987f650a04ef9b55cb37e9a2029662d139a8113db4bcad0d0d2fd4c4eca883111fe92ac7d0f78228e3377cd08d09fb16f39f
7
- data.tar.gz: e29564e5e491c774141fe6663bddc9d5f0b9591e4d958cb4125514fd5dd2020bb62e07d8ad19f1589d55fe714fa5426be05c08d3e47f2140ff4798663c53f16f
6
+ metadata.gz: 070e45a7b71b25a041ef4ba347131b444884fa15a096329d6b38294cda25f570837ea90e2f24a58b560fef417e18824babf0730fa0d38b2e20c544e1470a4414
7
+ data.tar.gz: dd3b20716f68df7fcaf1c7ced58319117f78b5a470fc26e09efddab1c423834e0c9dc9dab71d623d53d2d4f3cc532b604db43bfa8c1fe730e2497c139612aeef
data/CHANGELOG.md CHANGED
@@ -1,4 +1,7 @@
1
1
  # Changelog
2
+ ## 3.1.0.beta2 - 2023-01-16
3
+ - Updated pinned GDS SSL certificate
4
+
2
5
  ## 3.1.0.beta1 - 2022-09-12
3
6
  - Added support of ruby 3.1
4
7
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eligible (3.1.0.beta1)
4
+ eligible (3.1.0.beta2)
5
5
  multi_json (~> 1.15.0)
6
6
  rest-client (~> 2.1.0)
7
7
 
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:
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.1.0.beta1'.freeze
2
+ VERSION = '3.1.0.beta2'.freeze
3
3
  end
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(b4225ee59dc7ede4d68e7b2c75c6e6ac79649416
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.beta1
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: 2022-09-12 00:00:00.000000000 Z
13
+ date: 2023-01-17 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client