cqm-models 4.0.2 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.gitignore +1 -0
- data/app/models/qdm/basetypes/data_element.rb +1 -0
- data/cqm-models.gemspec +1 -1
- data/dist/browser.js +10638 -15167
- data/dist/index.js +10638 -15167
- data/package.json +6 -5
- data/yarn.lock +951 -402
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 824c04168aff91f769c20c2ebdb0eebc5b5b63f457ca424002e71c833260b6fc
|
4
|
+
data.tar.gz: ec4fad1105bef87c9e4acde4ec0639db03b6b96d77146ebb62a7e1a64068d2df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4c6e1020981220cb7227caef2dc7423d3bc3374e1b9ff5b1a85ffabe226e2fb8428fbe63abce00cbfda68f21ede488fc9d6122d5fd8ccf8a641cd7903d0baa4
|
7
|
+
data.tar.gz: b8cf4f3ede2e516a194f3879ce5a96980782b9227bffdc6d3a3c1a2779945b9d0d7455a9b33c84b59ed3ac89c4756eedfda6a8cb230285e8c620396fd8a0b723
|
data/.github/workflows/ci.yml
CHANGED
data/.gitignore
CHANGED
@@ -65,6 +65,7 @@ module QDM
|
|
65
65
|
def shift_dates(seconds)
|
66
66
|
fields.keys.each do |field|
|
67
67
|
send(field + '=', (send(field).to_time + seconds.seconds).to_datetime) if send(field).is_a? DateTime
|
68
|
+
send(field + '=', (send(field).to_time + seconds.seconds).to_datetime) if send(field).is_a? Time
|
68
69
|
send(field + '=', send(field).shift_dates(seconds)) if (send(field).is_a? Interval) || (send(field).is_a? DataElement)
|
69
70
|
|
70
71
|
# Special case for facility locations
|
data/cqm-models.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = 'cqm-models'
|
7
|
-
spec.version = '4.0
|
7
|
+
spec.version = '4.1.0'
|
8
8
|
spec.authors = ['aholmes@mitre.org', 'mokeefe@mitre.org', 'lades@mitre.org']
|
9
9
|
|
10
10
|
spec.summary = 'Mongo models that correspond to the QDM specification.'
|