fhir_client 5.0.2 → 5.0.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 +4 -4
- data/lib/fhir_client/ext/reference.rb +2 -2
- data/lib/fhir_client/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9842da03d68bf3f56e22b6c8c6e6645c88f0a25e876233f0ab45f95517362c43
|
|
4
|
+
data.tar.gz: f202c9a2252b630b13afc67adce9c314f42eec3b2da88bec05ccff227211e73b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e71f7c84fa1b9559fe085ef8d26317a29d3ab902c666694880d2d545deb8dbfeb645d961cb667a4a60408a50fc8754e6c8a3fabe06e2aa7e8954030992e8e26
|
|
7
|
+
data.tar.gz: c87f346a09f1ac9a2a5f84cd80489e014cbaa768679061831e87900a7608da3d954157b4c76bb1fe97519595f8b00090230da5021f8b31dc25c3b4af71023b66
|
|
@@ -54,7 +54,7 @@ module FHIR
|
|
|
54
54
|
parts[:base_uri]
|
|
55
55
|
end
|
|
56
56
|
|
|
57
|
-
def read
|
|
57
|
+
def read(client = self.client)
|
|
58
58
|
return if !(relative? || absolute?)
|
|
59
59
|
if relative? || reference == client.full_resource_url(resource: resource_class, id: reference_id)
|
|
60
60
|
read_client = client
|
|
@@ -64,7 +64,7 @@ module FHIR
|
|
|
64
64
|
resource_class.read(reference_id, read_client)
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
-
def vread
|
|
67
|
+
def vread(client = self.client)
|
|
68
68
|
return if !(relative? || absolute?) || version_id.blank?
|
|
69
69
|
if relative? || reference == client.full_resource_url(resource: resource_class, id: reference_id)
|
|
70
70
|
read_client = client
|
data/lib/fhir_client/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fhir_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andre Quina
|
|
8
8
|
- Jason Walonoski
|
|
9
9
|
- Robert Scanlon
|
|
10
10
|
- Reece Adamson
|
|
11
|
-
autorequire:
|
|
11
|
+
autorequire:
|
|
12
12
|
bindir: exe
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2021-09
|
|
14
|
+
date: 2021-12-09 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: activesupport
|
|
@@ -287,7 +287,7 @@ homepage: https://github.com/fhir-crucible/fhir_client
|
|
|
287
287
|
licenses:
|
|
288
288
|
- Apache-2.0
|
|
289
289
|
metadata: {}
|
|
290
|
-
post_install_message:
|
|
290
|
+
post_install_message:
|
|
291
291
|
rdoc_options: []
|
|
292
292
|
require_paths:
|
|
293
293
|
- lib
|
|
@@ -302,8 +302,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
302
302
|
- !ruby/object:Gem::Version
|
|
303
303
|
version: '0'
|
|
304
304
|
requirements: []
|
|
305
|
-
|
|
306
|
-
|
|
305
|
+
rubyforge_project:
|
|
306
|
+
rubygems_version: 2.7.6.2
|
|
307
|
+
signing_key:
|
|
307
308
|
specification_version: 4
|
|
308
309
|
summary: A Gem for handling FHIR client requests in ruby
|
|
309
310
|
test_files: []
|