cqm-models 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/PULL_REQUEST_TEMPLATE.md +2 -9
- data/app/models/qdm/basetypes/code.rb +1 -1
- data/app/models/qdm/basetypes/interval.rb +1 -1
- data/app/models/qdm/basetypes/quantity.rb +1 -1
- data/cqm-models.gemspec +1 -1
- data/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ec520335d86baf3fba9de0cd861239900820760
|
4
|
+
data.tar.gz: 53b9beba4687c9b2ce96a306951b9a6dce723205
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad0ba670d595b8afb2ee520e2afb3a8a98c99b6b25726677a7ee999b2b4b529e4496f918599742d609d4e7c1d5e8cea8cc2299b2f1f746eaca5f93c91ba7703f
|
7
|
+
data.tar.gz: ad982e9bfde53c096d782a9721e0c715ae1b4977e533b491375c96c518c40d1877d9ad833a4f92c0607657fe79b8cc6236eb5685ba28076d2080afdcf81af90f
|
@@ -10,21 +10,14 @@ Pull requests into cqm-models require the following. Submitter and reviewer shou
|
|
10
10
|
- [ ] If there were any JavaScript changes, this PR has updated the `dist` directory using `npm run dist`
|
11
11
|
- [ ] If applicable, the library version number in `package.json` and `cqm-models.gemspec` has been updated
|
12
12
|
|
13
|
-
**Reviewer
|
13
|
+
**Bonnie Reviewer:**
|
14
14
|
|
15
15
|
Name:
|
16
16
|
- [ ] Code is maintainable and reusable, reuses existing code and infrastructure where appropriate, and accomplishes the task’s purpose
|
17
17
|
- [ ] The tests appropriately test the new code, including edge cases
|
18
18
|
- [ ] You have tried to break the code
|
19
19
|
|
20
|
-
**Reviewer
|
21
|
-
|
22
|
-
Name:
|
23
|
-
- [ ] Code is maintainable and reusable, reuses existing code and infrastructure where appropriate, and accomplishes the task’s purpose
|
24
|
-
- [ ] The tests appropriately test the new code, including edge cases
|
25
|
-
- [ ] You have tried to break the code
|
26
|
-
|
27
|
-
**Reviewer 3:**
|
20
|
+
**Cypress Reviewer:**
|
28
21
|
|
29
22
|
Name:
|
30
23
|
- [ ] Code is maintainable and reusable, reuses existing code and infrastructure where appropriate, and accomplishes the task’s purpose
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module QDM
|
2
2
|
# Represents a Code
|
3
3
|
class Code
|
4
|
-
|
4
|
+
attr_accessor :code, :codeSystem, :descriptor, :codeSystemOid, :version
|
5
5
|
|
6
6
|
# Code and code system are required (at minimum).
|
7
7
|
def initialize(code, codeSystem, descriptor = nil, codeSystemOid = nil, version = nil)
|
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 = '0.7.
|
7
|
+
spec.version = '0.7.4'
|
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.'
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "cqm-models",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.4",
|
4
4
|
"description": "This library contains auto generated Mongo (Mongoose.js) models that correspond to the QDM (Quality Data Model) specification.",
|
5
5
|
"main": "app/assets/javascripts/index.js",
|
6
6
|
"browser": {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cqm-models
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- aholmes@mitre.org
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2018-04-
|
13
|
+
date: 2018-04-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|