cqm-reports 2.0.2 → 2.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 +5 -5
- data/lib/qrda-import/base-importers/section_importer.rb +3 -3
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: b5c92d6c2dec2225aa9f9a740414a8b1d1907c5a
|
|
4
|
+
data.tar.gz: dfecc543e3b7e627eb76fa67cc9882bccf20ef9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e05be97ed977400771523416d90cb77eaa2ced9d929236cabaeabebd550606b0eb30f4d23872a8fbc4c19f2b95b28a83d0d9c42c29312d5901e17409df85349
|
|
7
|
+
data.tar.gz: deb22e76760197131e804005519ec493c9df8bd141a0b2787506a71390f34225f00bd68f8ddd8b673d6f5792e1c3646e04414645ee233f0f66ea8c64ba8094dc
|
|
@@ -95,13 +95,13 @@ module QRDA
|
|
|
95
95
|
high_time = DateTime.parse(parent_element.at_xpath(interval_xpath)['value'])
|
|
96
96
|
end
|
|
97
97
|
if parent_element.at_xpath("#{interval_xpath}/cda:low")
|
|
98
|
-
low_time =
|
|
98
|
+
low_time = if parent_element.at_xpath("#{interval_xpath}/cda:low")['value']
|
|
99
|
+
DateTime.parse(parent_element.at_xpath("#{interval_xpath}/cda:low")['value'])
|
|
100
|
+
end
|
|
99
101
|
end
|
|
100
102
|
if parent_element.at_xpath("#{interval_xpath}/cda:high")
|
|
101
103
|
high_time = if parent_element.at_xpath("#{interval_xpath}/cda:high")['value']
|
|
102
104
|
DateTime.parse(parent_element.at_xpath("#{interval_xpath}/cda:high")['value'])
|
|
103
|
-
else
|
|
104
|
-
DateTime.new(9999,1,1)
|
|
105
105
|
end
|
|
106
106
|
end
|
|
107
107
|
if parent_element.at_xpath("#{interval_xpath}/cda:center")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cqm-reports
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The MITRE Corporation
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-08-
|
|
11
|
+
date: 2019-08-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cqm-models
|
|
@@ -338,7 +338,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
338
338
|
- !ruby/object:Gem::Version
|
|
339
339
|
version: '0'
|
|
340
340
|
requirements: []
|
|
341
|
-
|
|
341
|
+
rubyforge_project:
|
|
342
|
+
rubygems_version: 2.6.14
|
|
342
343
|
signing_key:
|
|
343
344
|
specification_version: 4
|
|
344
345
|
summary: A library for import and export of reports for use with electronic Clinical
|