cqm-reports 1.0.0.0 → 2.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +8 -6
- data/lib/html-export/qdm-patient/data_element/_data_element_codes.mustache +1 -1
- data/lib/html-export/qdm-patient/qdm_patient.rb +5 -1
- data/lib/qrda-export/catI-r5/qrda_templates/communication_performed.mustache +5 -3
- data/lib/qrda-export/catI-r5/qrda_templates/device_order.mustache +4 -4
- data/lib/qrda-export/catI-r5/qrda_templates/device_recommended.mustache +4 -4
- data/lib/qrda-export/catI-r5/qrda_templates/encounter_order.mustache +4 -4
- data/lib/qrda-export/catI-r5/qrda_templates/encounter_performed.mustache +4 -4
- data/lib/qrda-export/catI-r5/qrda_templates/encounter_recommended.mustache +4 -4
- data/lib/qrda-export/catI-r5/qrda_templates/medication_discharge.mustache +0 -3
- data/lib/qrda-export/catI-r5/qrda_templates/medication_dispensed.mustache +4 -4
- data/lib/qrda-export/catI-r5/qrda_templates/physical_exam_performed.mustache +4 -0
- data/lib/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_details.mustache +2 -2
- data/lib/qrda-export/catI-r5/qrda_templates/template_partials/_medication_details.mustache +5 -1
- data/lib/qrda-export/catI-r5/qrda_templates/template_partials/_medication_supply_request.mustache +1 -1
- data/lib/qrda-export/catI-r5/qrda_templates/template_partials/_results.mustache +0 -12
- data/lib/qrda-export/catIII-r2-1/_header.mustache +7 -0
- data/lib/qrda-export/catIII-r2-1/_measure_data.mustache +2 -0
- data/lib/qrda-export/catIII-r2-1/_measure_section.mustache +3 -0
- data/lib/qrda-export/catIII-r2-1/_supplemental_data.mustache +8 -1
- data/lib/qrda-export/catIII-r2-1/qrda3_r21.mustache +0 -1
- data/lib/qrda-export/catIII-r2-1/qrda3_r21.rb +16 -1
- data/lib/qrda-export/catIII-r2-1/qrda_header/_information_recipient.mustache +7 -0
- data/lib/qrda-export/catIII-r2-1/qrda_header/_participant_ehr.mustache +6 -0
- data/lib/qrda-export/catIII-r2-1/qrda_header/_participant_location.mustache +13 -0
- data/lib/qrda-export/helper/aggregate_object_helper.rb +1 -1
- data/lib/qrda-export/helper/cat1_view_helper.rb +18 -10
- data/lib/qrda-import/base-importers/demographics_importer.rb +3 -3
- data/lib/qrda-import/base-importers/section_importer.rb +37 -33
- data/lib/qrda-import/data-element-importers/assessment_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/assessment_performed_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/assessment_recommended_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/communication_performed_importer.rb +1 -2
- data/lib/qrda-import/data-element-importers/device_applied_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/device_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/device_recommended_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/diagnostic_study_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/diagnostic_study_performed_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/encounter_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/encounter_recommended_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/immunization_administered_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/immunization_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/intervention_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/intervention_performed_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/intervention_recommended_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/laboratory_test_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/laboratory_test_performed_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/laboratory_test_recommended_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/medication_administered_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/medication_dispensed_importer.rb +0 -1
- data/lib/qrda-import/data-element-importers/medication_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/patient_characteristic_clinical_trial_participant_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/physical_exam_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/physical_exam_performed_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/physical_exam_recommended_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/procedure_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/procedure_performed_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/procedure_recommended_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/substance_administered_importer.rb +0 -1
- data/lib/qrda-import/data-element-importers/substance_order_importer.rb +2 -0
- data/lib/qrda-import/data-element-importers/substance_recommended_importer.rb +2 -0
- data/lib/qrda-import/patient_importer.rb +1 -1
- data/lib/util/code_system_helper.rb +3 -24
- metadata +20 -18
@@ -10,6 +10,7 @@ module QRDA
|
|
10
10
|
@dosage_xpath = "./cda:doseQuantity"
|
11
11
|
@frequency_xpath = "./cda:effectiveTime[@operator='A']/cda:period"
|
12
12
|
@route_xpath = "./cda:routeCode"
|
13
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
13
14
|
@entry_class = QDM::MedicationAdministered
|
14
15
|
end
|
15
16
|
|
@@ -18,6 +19,7 @@ module QRDA
|
|
18
19
|
medication_administered.dosage = extract_scalar(entry_element, @dosage_xpath)
|
19
20
|
medication_administered.frequency = frequency_as_coded_value(entry_element, @frequency_xpath)
|
20
21
|
medication_administered.route = code_if_present(entry_element.at_xpath(@route_xpath))
|
22
|
+
medication_administered.reason = extract_reason(entry_element)
|
21
23
|
medication_administered
|
22
24
|
end
|
23
25
|
|
@@ -3,7 +3,6 @@ module QRDA
|
|
3
3
|
class MedicationDispensedImporter < SectionImporter
|
4
4
|
def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:act[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.139']"))
|
5
5
|
super(entry_finder)
|
6
|
-
@entry_does_not_have_reason = true
|
7
6
|
@id_xpath = './cda:id'
|
8
7
|
@code_xpath = "./cda:entryRelationship/cda:supply[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.18']/cda:product/cda:manufacturedProduct/cda:manufacturedMaterial/cda:code"
|
9
8
|
@relevant_period_xpath = "./cda:entryRelationship/cda:supply[cda:templateId/@root = '2.16.840.1.113883.10.20.22.4.18']/cda:effectiveTime"
|
@@ -15,6 +15,7 @@ module QRDA
|
|
15
15
|
@setting_xpath = "./cda:participant/cda:participantRole/cda:code"
|
16
16
|
@prescriber_id_xpath = "./cda:author/cda:assignedAuthor/cda:id"
|
17
17
|
@days_supplied_xpath = "./cda:entryRelationship/cda:supply[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.157']/cda:quantity"
|
18
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
18
19
|
@entry_class = QDM::MedicationOrder
|
19
20
|
end
|
20
21
|
|
@@ -28,6 +29,7 @@ module QRDA
|
|
28
29
|
medication_order.setting = code_if_present(entry_element.at_xpath(@setting_xpath))
|
29
30
|
medication_order.prescriberId = extract_id(entry_element, @prescriber_id_xpath)
|
30
31
|
medication_order.daysSupplied = extract_scalar(entry_element, @days_supplied_xpath)&.value
|
32
|
+
medication_order.reason = extract_reason(entry_element)
|
31
33
|
medication_order
|
32
34
|
end
|
33
35
|
|
@@ -6,11 +6,13 @@ module QRDA
|
|
6
6
|
@id_xpath = './cda:id'
|
7
7
|
@code_xpath = './cda:value'
|
8
8
|
@relevant_period_xpath = "./cda:effectiveTime"
|
9
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
9
10
|
@entry_class = QDM::PatientCharacteristicClinicalTrialParticipant
|
10
11
|
end
|
11
12
|
|
12
13
|
def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
|
13
14
|
patient_characteristic_clinical_trial_participant = super
|
15
|
+
patient_characteristic_clinical_trial_participant.reason = extract_reason(entry_element)
|
14
16
|
patient_characteristic_clinical_trial_participant
|
15
17
|
end
|
16
18
|
|
@@ -7,12 +7,14 @@ module QRDA
|
|
7
7
|
@code_xpath = "./cda:value"
|
8
8
|
@author_datetime_xpath = "./cda:author/cda:time"
|
9
9
|
@anatomical_location_site_xpath = "./cda:targetSiteCode"
|
10
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
10
11
|
@entry_class = QDM::PhysicalExamOrder
|
11
12
|
end
|
12
13
|
|
13
14
|
def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
|
14
15
|
physical_exam_order = super
|
15
16
|
physical_exam_order.anatomicalLocationSite = code_if_present(entry_element.at_xpath(@anatomical_location_site_xpath))
|
17
|
+
physical_exam_order.reason = extract_reason(entry_element)
|
16
18
|
physical_exam_order
|
17
19
|
end
|
18
20
|
|
@@ -11,6 +11,7 @@ module QRDA
|
|
11
11
|
@result_xpath = "./cda:value"
|
12
12
|
@anatomical_location_site_xpath = "./cda:targetSiteCode"
|
13
13
|
@components_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.149']"
|
14
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
14
15
|
@entry_class = QDM::PhysicalExamPerformed
|
15
16
|
end
|
16
17
|
|
@@ -19,6 +20,7 @@ module QRDA
|
|
19
20
|
physical_exam_performed.method = code_if_present(entry_element.at_xpath(@method_xpath))
|
20
21
|
physical_exam_performed.anatomicalLocationSite = code_if_present(entry_element.at_xpath(@anatomical_location_site_xpath))
|
21
22
|
physical_exam_performed.components = extract_components(entry_element)
|
23
|
+
physical_exam_performed.reason = extract_reason(entry_element)
|
22
24
|
physical_exam_performed
|
23
25
|
end
|
24
26
|
|
@@ -7,12 +7,14 @@ module QRDA
|
|
7
7
|
@code_xpath = "./cda:value"
|
8
8
|
@author_datetime_xpath = "./cda:author/cda:time"
|
9
9
|
@anatomical_location_site_xpath = "./cda:targetSiteCode"
|
10
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
10
11
|
@entry_class = QDM::PhysicalExamRecommended
|
11
12
|
end
|
12
13
|
|
13
14
|
def create_entry(entry_element, nrh = NarrativeReferenceHandler.new)
|
14
15
|
physical_exam_recommended = super
|
15
16
|
physical_exam_recommended.anatomicalLocationSite = code_if_present(entry_element.at_xpath(@anatomical_location_site_xpath))
|
17
|
+
physical_exam_recommended.reason = extract_reason(entry_element)
|
16
18
|
physical_exam_recommended
|
17
19
|
end
|
18
20
|
|
@@ -8,6 +8,7 @@ module QRDA
|
|
8
8
|
@author_datetime_xpath = "./cda:author/cda:time"
|
9
9
|
@anatomical_location_site_xpath = "./cda:targetSiteCode"
|
10
10
|
@ordinality_xpath = "./cda:priorityCode"
|
11
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
11
12
|
@entry_class = QDM::ProcedureOrder
|
12
13
|
end
|
13
14
|
|
@@ -15,6 +16,7 @@ module QRDA
|
|
15
16
|
procedure_order = super
|
16
17
|
procedure_order.anatomicalLocationSite = code_if_present(entry_element.at_xpath(@anatomical_location_site_xpath))
|
17
18
|
procedure_order.ordinality = code_if_present(entry_element.at_xpath(@ordinality_xpath))
|
19
|
+
procedure_order.reason = extract_reason(entry_element)
|
18
20
|
procedure_order
|
19
21
|
end
|
20
22
|
|
@@ -14,6 +14,7 @@ module QRDA
|
|
14
14
|
@ordinality_xpath = "./cda:priorityCode"
|
15
15
|
@incision_datetime_xpath = "./cda:entryRelationship/cda:procedure[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.89']/cda:effectiveTime"
|
16
16
|
@components_xpath = "./cda:entryRelationship/cda:observation[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.149']"
|
17
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
17
18
|
@entry_class = QDM::ProcedurePerformed
|
18
19
|
end
|
19
20
|
|
@@ -25,6 +26,7 @@ module QRDA
|
|
25
26
|
procedure_performed.ordinality = code_if_present(entry_element.at_xpath(@ordinality_xpath))
|
26
27
|
procedure_performed.incisionDatetime = extract_time(entry_element, @incision_datetime_xpath)
|
27
28
|
procedure_performed.components = extract_components(entry_element)
|
29
|
+
procedure_performed.reason = extract_reason(entry_element)
|
28
30
|
procedure_performed
|
29
31
|
end
|
30
32
|
|
@@ -8,6 +8,7 @@ module QRDA
|
|
8
8
|
@author_datetime_xpath = "./cda:author/cda:time"
|
9
9
|
@anatomical_location_site_xpath = "./cda:targetSiteCode"
|
10
10
|
@ordinality_xpath = "./cda:priorityCode"
|
11
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
11
12
|
@entry_class = QDM::ProcedureRecommended
|
12
13
|
end
|
13
14
|
|
@@ -15,6 +16,7 @@ module QRDA
|
|
15
16
|
procedure_recommended = super
|
16
17
|
procedure_recommended.anatomicalLocationSite = code_if_present(entry_element.at_xpath(@anatomical_location_site_xpath))
|
17
18
|
procedure_recommended.ordinality = code_if_present(entry_element.at_xpath(@ordinality_xpath))
|
19
|
+
procedure_recommended.reason = extract_reason(entry_element)
|
18
20
|
procedure_recommended
|
19
21
|
end
|
20
22
|
|
@@ -3,7 +3,6 @@ module QRDA
|
|
3
3
|
class SubstanceAdministeredImporter < SectionImporter
|
4
4
|
def initialize(entry_finder = QRDA::Cat1::EntryFinder.new("./cda:entry/cda:substanceAdministration[cda:templateId/@root = '2.16.840.1.113883.10.20.24.3.42']"))
|
5
5
|
super(entry_finder)
|
6
|
-
@entry_does_not_have_reason = true
|
7
6
|
@id_xpath = './cda:id'
|
8
7
|
@code_xpath = "./cda:consumable/cda:manufacturedProduct/cda:manufacturedMaterial/cda:code"
|
9
8
|
@author_datetime_xpath = "./cda:author/cda:time"
|
@@ -11,6 +11,7 @@ module QRDA
|
|
11
11
|
@frequency_xpath = "./cda:effectiveTime[@operator='A']/cda:period"
|
12
12
|
@refills_xpath = "./cda:repeatNumber"
|
13
13
|
@route_xpath = "./cda:routeCode"
|
14
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
14
15
|
@entry_class = QDM::SubstanceOrder
|
15
16
|
end
|
16
17
|
|
@@ -21,6 +22,7 @@ module QRDA
|
|
21
22
|
substance_order.frequency = frequency_as_coded_value(entry_element, @frequency_xpath)
|
22
23
|
substance_order.refills = extract_scalar(entry_element, @refills_xpath)&.value
|
23
24
|
substance_order.route = code_if_present(entry_element.at_xpath(@route_xpath))
|
25
|
+
substance_order.reason = extract_reason(entry_element)
|
24
26
|
substance_order
|
25
27
|
end
|
26
28
|
|
@@ -10,6 +10,7 @@ module QRDA
|
|
10
10
|
@frequency_xpath = "./cda:effectiveTime[@operator='A']/cda:period"
|
11
11
|
@refills_xpath = "./cda:repeatNumber"
|
12
12
|
@route_xpath = "./cda:routeCode"
|
13
|
+
@reason_xpath = "./cda:entryRelationship[@typeCode='RSON']/cda:observation[cda:templateId/@root='2.16.840.1.113883.10.20.24.3.88']/cda:value"
|
13
14
|
@entry_class = QDM::SubstanceRecommended
|
14
15
|
end
|
15
16
|
|
@@ -19,6 +20,7 @@ module QRDA
|
|
19
20
|
substance_recommended.frequency = frequency_as_coded_value(entry_element, @frequency_xpath)
|
20
21
|
substance_recommended.refills = extract_scalar(entry_element, @refills_xpath)&.value
|
21
22
|
substance_recommended.route = code_if_present(entry_element.at_xpath(@route_xpath))
|
23
|
+
substance_recommended.reason = extract_reason(entry_element)
|
22
24
|
substance_recommended
|
23
25
|
end
|
24
26
|
|
@@ -109,7 +109,7 @@ module QRDA
|
|
109
109
|
|
110
110
|
relations_to_add = []
|
111
111
|
data_element.relatedTo.each do |related_to|
|
112
|
-
relations_to_add << entry_id_map[related_to.value]
|
112
|
+
relations_to_add << entry_id_map["#{related_to.value}_#{related_to.namingSystem}"]
|
113
113
|
end
|
114
114
|
data_element.relatedTo.destroy
|
115
115
|
relations_to_add.each do |relation_to_add|
|
@@ -6,7 +6,6 @@ module HQMF
|
|
6
6
|
'2.16.840.1.113883.6.1' => 'LOINC',
|
7
7
|
'2.16.840.1.113883.6.96' => 'SNOMEDCT',
|
8
8
|
'2.16.840.1.113883.6.12' => 'CPT',
|
9
|
-
#'2.16.840.1.113883.3.88.12.80.32' => 'CPT', # Encounter Type from C32, a subset of CPT
|
10
9
|
'2.16.840.1.113883.6.88' => 'RXNORM',
|
11
10
|
'2.16.840.1.113883.6.103' => 'ICD9CM',
|
12
11
|
'2.16.840.1.113883.6.104' => 'ICD9CM',
|
@@ -35,37 +34,17 @@ module HQMF
|
|
35
34
|
'2.16.840.1.113883.3.221.5' => "Source of Payment Typology",
|
36
35
|
'2.16.840.1.113883.6.13' => 'CDT',
|
37
36
|
'2.16.840.1.113883.18.2' => 'AdministrativeSex',
|
38
|
-
'2.16.840.1.113883.5.1' => 'AdministrativeGender'
|
39
|
-
|
40
|
-
|
41
|
-
CODE_SYSTEM_ALIASES = {
|
42
|
-
'FDA SPL' => 'NCI Thesaurus',
|
43
|
-
'HSLOC' => 'HL7 Healthcare Service Location',
|
44
|
-
'SOP' => "Source of Payment Typology"
|
45
|
-
}
|
46
|
-
|
47
|
-
# Some old OID are still around in data, this hash maps retired OID values to
|
48
|
-
# the new value
|
49
|
-
OID_ALIASES = {
|
50
|
-
'2.16.840.1.113883.6.59' => '2.16.840.1.113883.12.292' # CVX
|
51
|
-
}
|
37
|
+
'2.16.840.1.113883.5.1' => 'AdministrativeGender',
|
38
|
+
'1.2.3.4.5.6.7.8.9.10' => 'NA_VALUESET'
|
39
|
+
}.freeze
|
52
40
|
|
53
41
|
# Returns the name of a code system given an oid
|
54
42
|
# @param [String] oid of a code system
|
55
43
|
# @return [String] the name of the code system as described in the measure definition JSON
|
56
44
|
def self.code_system_for(oid)
|
57
|
-
oid = OID_ALIASES[oid] if OID_ALIASES[oid]
|
58
45
|
CODE_SYSTEMS[oid] || "Unknown"
|
59
46
|
end
|
60
47
|
|
61
|
-
# Returns the oid for a code system given a codesystem name
|
62
|
-
# @param [String] the name of the code system
|
63
|
-
# @return [String] the oid of the code system
|
64
|
-
def self.oid_for_code_system(code_system)
|
65
|
-
code_system = CODE_SYSTEM_ALIASES[code_system] if CODE_SYSTEM_ALIASES[code_system]
|
66
|
-
CODE_SYSTEMS.invert[code_system]
|
67
|
-
end
|
68
|
-
|
69
48
|
# Returns the whole map of OIDs to code systems
|
70
49
|
# @terurn [Hash] oids as keys, code system names as values
|
71
50
|
def self.code_systems
|
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:
|
4
|
+
version: 2.0.4
|
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-
|
11
|
+
date: 2019-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cqm-models
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 2.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 2.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: mustache
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,56 +44,56 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 2.7
|
47
|
+
version: '2.7'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 2.7
|
54
|
+
version: '2.7'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: mongoid-tree
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.1
|
61
|
+
version: '2.1'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 2.1
|
68
|
+
version: '2.1'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: nokogiri
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 1.10
|
75
|
+
version: '1.10'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 1.10
|
82
|
+
version: '1.10'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: uuid
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 2.3
|
89
|
+
version: '2.3'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 2.3
|
96
|
+
version: '2.3'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: zip-zip
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,28 +114,28 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 1.1
|
117
|
+
version: '1.1'
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 1.1
|
124
|
+
version: '1.1'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: memoist
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 0.9
|
131
|
+
version: '0.9'
|
132
132
|
type: :runtime
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 0.9
|
138
|
+
version: '0.9'
|
139
139
|
description: A library for import and export of reports for use with electronic Clinical
|
140
140
|
Quality Measures (eCQMs).
|
141
141
|
email: tacoma-list@lists.mitre.org
|
@@ -248,7 +248,10 @@ files:
|
|
248
248
|
- lib/qrda-export/catIII-r2-1/qrda_header/_author.mustache
|
249
249
|
- lib/qrda-export/catIII-r2-1/qrda_header/_custodian.mustache
|
250
250
|
- lib/qrda-export/catIII-r2-1/qrda_header/_documentation_of_service_event.mustache
|
251
|
+
- lib/qrda-export/catIII-r2-1/qrda_header/_information_recipient.mustache
|
251
252
|
- lib/qrda-export/catIII-r2-1/qrda_header/_legal_authenticator.mustache
|
253
|
+
- lib/qrda-export/catIII-r2-1/qrda_header/_participant_ehr.mustache
|
254
|
+
- lib/qrda-export/catIII-r2-1/qrda_header/_participant_location.mustache
|
252
255
|
- lib/qrda-export/helper/aggregate_object_helper.rb
|
253
256
|
- lib/qrda-export/helper/cat1_view_helper.rb
|
254
257
|
- lib/qrda-export/helper/date_helper.rb
|
@@ -335,8 +338,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
335
338
|
- !ruby/object:Gem::Version
|
336
339
|
version: '0'
|
337
340
|
requirements: []
|
338
|
-
|
339
|
-
rubygems_version: 2.7.7
|
341
|
+
rubygems_version: 3.0.3
|
340
342
|
signing_key:
|
341
343
|
specification_version: 4
|
342
344
|
summary: A library for import and export of reports for use with electronic Clinical
|