cql_qdm_patientapi 1.0.2 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed60753c3f2f92815e3510b08a0c863090c33da0
4
- data.tar.gz: 17aea55260ae7f696b6f671d4b56116ed440c47f
3
+ metadata.gz: 43e87cc45230cdc86d4e2aca04b86e27d5bf6a18
4
+ data.tar.gz: a210a2b8b1a9935b8ccd9196a2dc0ab97dcf004a
5
5
  SHA512:
6
- metadata.gz: f3c37504a4a2df7186a4a0c6edfc0b17f61712da286e53e99badbe7038fac86f62301bd3b18df2d39175e3e07541f47352eb462e4375e403b59b3d8ebc910fac
7
- data.tar.gz: 88b40cb1d68c4ed759f51bf767f951dd701c077e28c7255339393b7d29d36d0f4f838e62d3c67fd3d51939e8a2a2dca094746914299c492faf0927c73a18b10d
6
+ metadata.gz: 4aeca62d9cfd1e4696f8f4c56c1ff0c0f5e0815643368e965f4369e5eff19f9b565a3d5f26261b5d95821805805f7a10f6517dd7ea1d8bac2928835bb096f4b2
7
+ data.tar.gz: b63be41350b4e7ca3a6e333c9a2fbed3058c09a3887c0bf302f99663f1d475515fc69c4919dab3063cd94fa3df0c987d50a881343f7ac5ee21d4448bf6a93b23
@@ -7,6 +7,7 @@ before_install:
7
7
  before_install: gem install bundler -v 1.15.3
8
8
  script:
9
9
  - export DISPLAY=:99.0
10
+ - bundle exec bundle-audit check --update
10
11
  - bundle exec teaspoon
11
12
  notifications:
12
13
  email:
data/Gemfile CHANGED
@@ -2,7 +2,8 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- group :development, :test do
5
+ group :development, :test, :ci do
6
6
  gem "teaspoon-jasmine", "2.3.4"
7
7
  gem "phantomjs"
8
+ gem 'bundler-audit'
8
9
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cql_qdm_patientapi (1.0.2)
4
+ cql_qdm_patientapi (1.0.3)
5
5
  coffee-rails (~> 4.1)
6
6
  rails (~> 4.2)
7
7
  sprockets-rails (~> 2.3)
@@ -45,6 +45,9 @@ GEM
45
45
  tzinfo (~> 1.1)
46
46
  arel (6.0.4)
47
47
  builder (3.2.3)
48
+ bundler-audit (0.6.0)
49
+ bundler (~> 1.2)
50
+ thor (~> 0.18)
48
51
  coffee-rails (4.2.2)
49
52
  coffee-script (>= 2.2.0)
50
53
  railties (>= 4.0.0)
@@ -68,7 +71,7 @@ GEM
68
71
  mini_mime (1.0.0)
69
72
  mini_portile2 (2.3.0)
70
73
  minitest (5.10.3)
71
- nokogiri (1.8.1)
74
+ nokogiri (1.8.2)
72
75
  mini_portile2 (~> 2.3.0)
73
76
  phantomjs (2.1.1.0)
74
77
  rack (1.6.8)
@@ -119,6 +122,7 @@ PLATFORMS
119
122
  ruby
120
123
 
121
124
  DEPENDENCIES
125
+ bundler-audit
122
126
  cql_qdm_patientapi!
123
127
  phantomjs
124
128
  teaspoon-jasmine (= 2.3.4)
@@ -15,7 +15,7 @@ class CQL_QDM.ProcedureOrder extends CQL_QDM.QDMDatatype
15
15
  constructor: (@entry) ->
16
16
  super @entry
17
17
  @_anatomicalApproachSite = @entry.anatomical_approach
18
- @_anatomicalLocationSite = @entry.anatomicalLocation
18
+ @_anatomicalLocationSite = @entry.anatomical_location
19
19
  @_authorDatetime = CQL_QDM.Helpers.convertDateTime(@entry.start_time)
20
20
  @_method = @entry.method
21
21
  @_negationRationale = @entry.negationReason
@@ -95,7 +95,7 @@ class CQL_QDM.ProcedurePerformed extends CQL_QDM.QDMDatatype
95
95
  constructor: (@entry) ->
96
96
  super @entry
97
97
  @_anatomicalApproachSite = @entry.anatomical_approach
98
- @_anatomicalLocationSite = @entry.anatomicalLocation
98
+ @_anatomicalLocationSite = @entry.anatomical_location
99
99
  @_authorDatetime = CQL_QDM.Helpers.convertDateTime(@entry.start_time)
100
100
  @_incisionDatetime = CQL_QDM.Helpers.convertDateTime(@entry.incisionTime)
101
101
  @_method = @entry.method
@@ -228,7 +228,7 @@ class CQL_QDM.ProcedureRecommended extends CQL_QDM.QDMDatatype
228
228
  constructor: (@entry) ->
229
229
  super @entry
230
230
  @_anatomicalApproachSite = @entry.anatomical_approach
231
- @_anatomicalLocationSite = @entry.anatomicalLocation
231
+ @_anatomicalLocationSite = @entry.anatomical_location
232
232
  @_method = @entry.method
233
233
  @_negationRationale = @entry.negationReason
234
234
  @_ordinality = @entry.ordinality
@@ -1,3 +1,3 @@
1
1
  module CqlQdmPatientapi
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cql_qdm_patientapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - The MITRE Corporation
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-15 00:00:00.000000000 Z
11
+ date: 2018-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails