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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5733809db5163fce86600f334ec039a4e23e1143
4
- data.tar.gz: 04aee8cbbffe9662f5975055d7f099c619a2a1c9
3
+ metadata.gz: 7ec520335d86baf3fba9de0cd861239900820760
4
+ data.tar.gz: 53b9beba4687c9b2ce96a306951b9a6dce723205
5
5
  SHA512:
6
- metadata.gz: 03b1d7f5efe070d2003d4e8d207173a533877d2e2e4caea6af7e1f764fcaa0b3cdcdd1f6617a907aa1e2800de70e1229cd32d6654b18af8c105f1200f043b585
7
- data.tar.gz: dd875d71609c1202a3344e534fd72e18518547825aefa53014f0bd63461912099e916a46bddbdb460d899fd98ba26fbcb44d85308e37301c6e6a4b51b032bb16
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 1:**
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 2:**
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
- attr_reader :code, :codeSystem, :descriptor, :codeSystemOid, :version
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)
@@ -1,7 +1,7 @@
1
1
  module QDM
2
2
  # Represents an Interval
3
3
  class Interval
4
- attr_reader :low, :high
4
+ attr_accessor :low, :high, :lowClosed, :highClosed
5
5
 
6
6
  # Low and high are required (at minimum).
7
7
  def initialize(low, high, lowClosed = true, highClosed = true)
@@ -1,7 +1,7 @@
1
1
  module QDM
2
2
  # Represents a Quantity
3
3
  class Quantity
4
- attr_reader :value, :unit
4
+ attr_accessor :value, :unit
5
5
 
6
6
  # Value and unit are required.
7
7
  def initialize(value, unit)
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.3'
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",
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.3
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-23 00:00:00.000000000 Z
13
+ date: 2018-04-30 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler