roqua-healthy 1.5.8 → 1.5.9
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 +5 -5
- data/.document +0 -0
- data/.gitlab-ci.yml +3 -3
- data/.rspec +0 -0
- data/.rubocop_todo.yml +3 -0
- data/.yardopts +0 -0
- data/ChangeLog.md +8 -0
- data/Guardfile +0 -0
- data/LICENSE.txt +0 -0
- data/Rakefile +0 -0
- data/circle.yml +0 -0
- data/gemfiles/rails41.gemfile +0 -0
- data/gemfiles/rails42.gemfile +0 -0
- data/gemfiles/rails50.gemfile +0 -0
- data/lib/roqua/healthy/a19.rb +0 -0
- data/lib/roqua/healthy/a19/correct_patient_check.rb +0 -0
- data/lib/roqua/healthy/a19/impulse_name_parser.rb +0 -0
- data/lib/roqua/healthy/a19/name_parser.rb +0 -0
- data/lib/roqua/healthy/a19/response_parser.rb +0 -0
- data/lib/roqua/healthy/message_cleaner.rb +0 -0
- data/lib/roqua/healthy/version.rb +1 -1
- data/lib/roqua_healthy.rb +0 -0
- data/roqua-healthy.gemspec +3 -3
- data/spec/fixtures/comez_patient.xml +0 -0
- data/spec/fixtures/ggzwnb_patient.xml +0 -0
- data/spec/fixtures/oru-requests/spsy1218j.hl7 +0 -0
- data/spec/fixtures/oru-requests/spsy1218o.hl7 +0 -0
- data/spec/fixtures/oru-requests/spsy1218o2.hl7 +0 -0
- data/spec/fixtures/oru-requests/spsy411o.hl7 +0 -0
- data/spec/fixtures/oru-requests/spsy411o2.hl7 +0 -0
- data/spec/fixtures/oru-requests/spsyl.hl7 +0 -0
- data/spec/fixtures/oru-responses/xmcare_nack.hl7 +0 -0
- data/spec/fixtures/user_patient.xml +0 -0
- data/spec/fixtures/user_patient_not_found.xml +0 -0
- data/spec/fixtures/user_patient_with_gsm_and_email.xml +0 -0
- data/spec/fixtures/user_patient_with_maiden_name.xml +0 -0
- data/spec/fixtures/xmcare_patient.xml +0 -0
- data/spec/fixtures/xmcare_patient_email_in_field_number_four.xml +0 -0
- data/spec/fixtures/xmcare_patient_not_found.xml +0 -0
- data/spec/fixtures/xmcare_patient_with_maiden_name.xml +0 -0
- data/spec/fixtures/xmcare_patient_without_birthdate.xml +0 -0
- data/spec/fixtures/xmcare_phone_cell_in_prn.xml +0 -0
- data/spec/fixtures/xmcare_phone_cell_in_prn_orn.xml +0 -0
- data/spec/fixtures/xmcare_phone_home_in_prn.xml +0 -0
- data/spec/fixtures/xmcare_timeout_waiting_for_ack.xml +0 -0
- data/spec/fixtures/xmcare_unconventional_phone_cell_in_orn.xml +0 -0
- data/spec/fixtures/xmcare_unconventional_phone_cell_in_orn2.xml +0 -0
- data/spec/healthy_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- data/spec/support/fixtures.rb +0 -0
- data/spec/unit/a19/correct_patient_check_spec.rb +0 -0
- data/spec/unit/a19_spec.rb +0 -0
- data/spec/unit/message_cleaner_spec.rb +0 -0
- metadata +11 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: dd1dc3e8ce6e055eaa889059f77e2d31c85cdb304610f897488fe5b62aaad19c
|
|
4
|
+
data.tar.gz: 7c51e0e0f982adc0085d05a5cb71234fa71a039b9244e060446e73c3d30e3437
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46c3a927a35d6ebd92be5a3342774dd9cfc421e4fee5d2200998c36b886b6795bc9cd31f3ba106d21361ac947ad97f29a65d731397f04fb6cc6a1ab93ce1e163
|
|
7
|
+
data.tar.gz: af5d642130dff9324205ee27c33591fbc21fd2fbf8963127f13fbb4abbed39f572530cb3c8442d82c691bf679bf6b6e3881b4821456d5201186e0b2efeb6e624
|
data/.document
CHANGED
|
File without changes
|
data/.gitlab-ci.yml
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
image: "registry.roqua.nl/roqua/
|
|
1
|
+
image: "registry.roqua.nl/roqua/docker-base-images:ruby-2.5"
|
|
2
2
|
|
|
3
3
|
cache:
|
|
4
4
|
paths:
|
|
5
5
|
- .gems
|
|
6
6
|
|
|
7
7
|
before_script:
|
|
8
|
+
- gem uninstall bundler
|
|
8
9
|
- export BUNDLE_PATH=$CI_PROJECT_DIR/.gems
|
|
9
10
|
- bundle --jobs 2 --retry 3
|
|
10
11
|
- gem install appraisal
|
|
@@ -13,10 +14,9 @@ before_script:
|
|
|
13
14
|
rubocop:
|
|
14
15
|
script:
|
|
15
16
|
- bundle exec rubocop -D
|
|
16
|
-
|
|
17
|
+
|
|
17
18
|
rspec:
|
|
18
19
|
script:
|
|
19
20
|
- bundle exec appraisal rails41 bundle exec rspec
|
|
20
21
|
- bundle exec appraisal rails42 bundle exec rspec
|
|
21
22
|
- bundle exec appraisal rails50 bundle exec rspec
|
|
22
|
-
|
data/.rspec
CHANGED
|
File without changes
|
data/.rubocop_todo.yml
CHANGED
data/.yardopts
CHANGED
|
File without changes
|
data/ChangeLog.md
CHANGED
data/Guardfile
CHANGED
|
File without changes
|
data/LICENSE.txt
CHANGED
|
File without changes
|
data/Rakefile
CHANGED
|
File without changes
|
data/circle.yml
CHANGED
|
File without changes
|
data/gemfiles/rails41.gemfile
CHANGED
|
File without changes
|
data/gemfiles/rails42.gemfile
CHANGED
|
File without changes
|
data/gemfiles/rails50.gemfile
CHANGED
|
File without changes
|
data/lib/roqua/healthy/a19.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/roqua_healthy.rb
CHANGED
|
File without changes
|
data/roqua-healthy.gemspec
CHANGED
|
@@ -25,16 +25,16 @@ Gem::Specification.new do |gem|
|
|
|
25
25
|
gem.add_dependency 'builder'
|
|
26
26
|
gem.add_dependency 'phonelib', '~> 0.6'
|
|
27
27
|
gem.add_dependency 'rest-client', '>= 2.0.2'
|
|
28
|
-
gem.add_dependency 'roqua-support', '~> 0.
|
|
28
|
+
gem.add_dependency 'roqua-support', '~> 0.3.0'
|
|
29
29
|
|
|
30
30
|
gem.add_development_dependency 'appraisal'
|
|
31
|
-
gem.add_development_dependency 'bundler'
|
|
31
|
+
gem.add_development_dependency 'bundler'
|
|
32
32
|
gem.add_development_dependency 'rake', '~> 10.0'
|
|
33
33
|
gem.add_development_dependency 'rspec', '~> 3.3.0'
|
|
34
34
|
gem.add_development_dependency 'yard', '~> 0.8'
|
|
35
35
|
|
|
36
36
|
# Required for the tests
|
|
37
|
-
gem.add_development_dependency 'webmock', '~>
|
|
37
|
+
gem.add_development_dependency 'webmock', '~> 3.2'
|
|
38
38
|
|
|
39
39
|
# Workflow and tools
|
|
40
40
|
gem.add_development_dependency 'fuubar'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/healthy_spec.rb
CHANGED
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
|
File without changes
|
data/spec/support/fixtures.rb
CHANGED
|
File without changes
|
|
File without changes
|
data/spec/unit/a19_spec.rb
CHANGED
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: roqua-healthy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marten Veldthuis
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date:
|
|
14
|
+
date: 2019-06-12 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: activesupport
|
|
@@ -95,14 +95,14 @@ dependencies:
|
|
|
95
95
|
requirements:
|
|
96
96
|
- - "~>"
|
|
97
97
|
- !ruby/object:Gem::Version
|
|
98
|
-
version: 0.
|
|
98
|
+
version: 0.3.0
|
|
99
99
|
type: :runtime
|
|
100
100
|
prerelease: false
|
|
101
101
|
version_requirements: !ruby/object:Gem::Requirement
|
|
102
102
|
requirements:
|
|
103
103
|
- - "~>"
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
|
-
version: 0.
|
|
105
|
+
version: 0.3.0
|
|
106
106
|
- !ruby/object:Gem::Dependency
|
|
107
107
|
name: appraisal
|
|
108
108
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -121,16 +121,16 @@ dependencies:
|
|
|
121
121
|
name: bundler
|
|
122
122
|
requirement: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
|
-
- - "
|
|
124
|
+
- - ">="
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
|
-
version: '
|
|
126
|
+
version: '0'
|
|
127
127
|
type: :development
|
|
128
128
|
prerelease: false
|
|
129
129
|
version_requirements: !ruby/object:Gem::Requirement
|
|
130
130
|
requirements:
|
|
131
|
-
- - "
|
|
131
|
+
- - ">="
|
|
132
132
|
- !ruby/object:Gem::Version
|
|
133
|
-
version: '
|
|
133
|
+
version: '0'
|
|
134
134
|
- !ruby/object:Gem::Dependency
|
|
135
135
|
name: rake
|
|
136
136
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -179,14 +179,14 @@ dependencies:
|
|
|
179
179
|
requirements:
|
|
180
180
|
- - "~>"
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
|
-
version: '
|
|
182
|
+
version: '3.2'
|
|
183
183
|
type: :development
|
|
184
184
|
prerelease: false
|
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
|
186
186
|
requirements:
|
|
187
187
|
- - "~>"
|
|
188
188
|
- !ruby/object:Gem::Version
|
|
189
|
-
version: '
|
|
189
|
+
version: '3.2'
|
|
190
190
|
- !ruby/object:Gem::Dependency
|
|
191
191
|
name: fuubar
|
|
192
192
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -407,8 +407,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
407
407
|
- !ruby/object:Gem::Version
|
|
408
408
|
version: '0'
|
|
409
409
|
requirements: []
|
|
410
|
-
|
|
411
|
-
rubygems_version: 2.5.2
|
|
410
|
+
rubygems_version: 3.0.3
|
|
412
411
|
signing_key:
|
|
413
412
|
specification_version: 4
|
|
414
413
|
summary: Arranges communication between Mirth and RoQua
|