onc_certification_g10_test_kit 7.2.2 → 7.2.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f1da0ec1a0908ca5619d39a1a089fb1a50e1ef9f769cb0af28a918a5fbc22fb
|
4
|
+
data.tar.gz: be6759a5d57a2f29c2d4c990b322c65f2df04f994ab1fad57ad8a40cc2b0817b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5f3cc784f55ec2bb77ca0d39bc669026f38b27d19b9be6d140d9ff419613b23b13815b4b76c40ddb062d255bb6e8e971392f1294a3f94934d6bc82a3c750bee
|
7
|
+
data.tar.gz: 76793dca8bcb721e54091c0792f59a1e7d68b6cfc1723138897adc3ddae0cadcc96a2d3043e3ef696f2e02c5fc0937245e59f896a1cf68d11b70403305a1106e
|
@@ -11,7 +11,7 @@ module Inferno
|
|
11
11
|
class << self
|
12
12
|
REGISTRY_SERVER_URL = 'https://packages.fhir.org'.freeze
|
13
13
|
US_CORE_7_PACKAGE_URL = 'https://hl7.org/fhir/us/core/STU7/package.tgz'.freeze
|
14
|
-
VSAC_18_PACKAGE_URL = 'https://packages2.fhir.org/
|
14
|
+
VSAC_18_PACKAGE_URL = 'https://packages2.fhir.org/web//us.nlm.vsac-0.18.0.tgz'.freeze
|
15
15
|
REQUIRED_VSAC_VALUE_SET_URLS = [
|
16
16
|
'http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.114222.4.11.836',
|
17
17
|
'http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.1.11.14914',
|
@@ -63,10 +63,16 @@ module Inferno
|
|
63
63
|
File.open(tar_file_name, 'w') do |output_file|
|
64
64
|
output_file.binmode
|
65
65
|
block = proc do |response|
|
66
|
-
response.
|
67
|
-
|
66
|
+
if ['301', '302', '307'].include? response.code
|
67
|
+
RestClient::Request.execute(method: :get, url: response.header[:location], block_response: block)
|
68
|
+
else
|
69
|
+
response.read_body do |chunk|
|
70
|
+
output_file.write chunk
|
71
|
+
end
|
68
72
|
end
|
69
73
|
end
|
74
|
+
|
75
|
+
puts "Downloading #{package_url}"
|
70
76
|
RestClient::Request.execute(method: :get, url: package_url, block_response: block)
|
71
77
|
end
|
72
78
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: onc_certification_g10_test_kit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.2.
|
4
|
+
version: 7.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen MacVicar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bloomer
|
@@ -142,14 +142,14 @@ dependencies:
|
|
142
142
|
requirements:
|
143
143
|
- - '='
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: 0.11.
|
145
|
+
version: 0.11.4
|
146
146
|
type: :runtime
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
150
|
- - '='
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 0.11.
|
152
|
+
version: 0.11.4
|
153
153
|
description: ONC Certification (g)(10) Standardized API for Patient and Population
|
154
154
|
Services Test Kit
|
155
155
|
email:
|