roqua-healthy 1.5.11 → 1.5.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +19 -1
- data/.rubocop.yml +3 -0
- data/Appraisals +12 -0
- data/ChangeLog.md +5 -1
- data/gemfiles/rails41.gemfile +3 -2
- data/gemfiles/rails42.gemfile +3 -2
- data/gemfiles/rails50.gemfile +3 -2
- data/gemfiles/rails51.gemfile +9 -0
- data/gemfiles/rails52.gemfile +9 -0
- data/gemfiles/rails60.gemfile +9 -0
- data/lib/roqua/healthy/a19/transformer.rb +17 -17
- data/lib/roqua/healthy/oru/client.rb +0 -1
- data/lib/roqua/healthy/version.rb +1 -1
- data/roqua-healthy.gemspec +1 -1
- metadata +12 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e402c30237a4c3eeeb578cb4c2a594eba83b6374ce8634259b5bac1c9cf1270b
|
4
|
+
data.tar.gz: 344a609880ddf08da1cf0d60dc9e70a1ef2d312a3de887aa11bd71680b5a49bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67ad548fab99cf59055a425891d0645afbd22598e4a6ce490f6adc26324289ec3c3c038f777b106c02e3746cdc26dcc8f92547c4661f2da71f7d3ac94932b41c
|
7
|
+
data.tar.gz: 42c200b696af931d3666a9aa9e0bddfe0983a3f6180c771dae7cbc4f5983fbd3133bf1dc7dc0539e53b4be2bc58bd70fc2afb76dfc1e4ca594d0e4c03ee9ee44
|
data/.gitlab-ci.yml
CHANGED
@@ -15,8 +15,26 @@ rubocop:
|
|
15
15
|
script:
|
16
16
|
- bundle exec rubocop -D
|
17
17
|
|
18
|
-
|
18
|
+
rails41:
|
19
19
|
script:
|
20
20
|
- bundle exec appraisal rails41 bundle exec rspec
|
21
|
+
|
22
|
+
rails42:
|
23
|
+
script:
|
21
24
|
- bundle exec appraisal rails42 bundle exec rspec
|
25
|
+
|
26
|
+
rails50:
|
27
|
+
script:
|
22
28
|
- bundle exec appraisal rails50 bundle exec rspec
|
29
|
+
|
30
|
+
rails51:
|
31
|
+
script:
|
32
|
+
- bundle exec appraisal rails51 bundle exec rspec
|
33
|
+
|
34
|
+
rails52:
|
35
|
+
script:
|
36
|
+
- bundle exec appraisal rails52 bundle exec rspec
|
37
|
+
|
38
|
+
rails60:
|
39
|
+
script:
|
40
|
+
- bundle exec appraisal rails60 bundle exec rspec
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
@@ -11,3 +11,15 @@ end
|
|
11
11
|
appraise "rails50" do
|
12
12
|
gem "activesupport", "5.0"
|
13
13
|
end
|
14
|
+
|
15
|
+
appraise "rails51" do
|
16
|
+
gem "activesupport", "5.1"
|
17
|
+
end
|
18
|
+
|
19
|
+
appraise "rails52" do
|
20
|
+
gem "activesupport", "5.2"
|
21
|
+
end
|
22
|
+
|
23
|
+
appraise "rails60" do
|
24
|
+
gem "activesupport", "6.0"
|
25
|
+
end
|
data/ChangeLog.md
CHANGED
data/gemfiles/rails41.gemfile
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "codeclimate-test-reporter", "~> 1.0.0", :
|
5
|
+
gem "codeclimate-test-reporter", "~> 1.0.0", group: :test, require: nil
|
6
|
+
gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
|
6
7
|
gem "activesupport", "4.1"
|
7
8
|
|
8
|
-
gemspec :
|
9
|
+
gemspec path: "../"
|
data/gemfiles/rails42.gemfile
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "codeclimate-test-reporter", "~> 1.0.0", :
|
5
|
+
gem "codeclimate-test-reporter", "~> 1.0.0", group: :test, require: nil
|
6
|
+
gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
|
6
7
|
gem "activesupport", "4.2"
|
7
8
|
|
8
|
-
gemspec :
|
9
|
+
gemspec path: "../"
|
data/gemfiles/rails50.gemfile
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "codeclimate-test-reporter", "~> 1.0.0", :
|
5
|
+
gem "codeclimate-test-reporter", "~> 1.0.0", group: :test, require: nil
|
6
|
+
gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
|
6
7
|
gem "activesupport", "5.0"
|
7
8
|
|
8
|
-
gemspec :
|
9
|
+
gemspec path: "../"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "codeclimate-test-reporter", "~> 1.0.0", group: :test, require: nil
|
6
|
+
gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
|
7
|
+
gem "activesupport", "5.1"
|
8
|
+
|
9
|
+
gemspec path: "../"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "codeclimate-test-reporter", "~> 1.0.0", group: :test, require: nil
|
6
|
+
gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
|
7
|
+
gem "activesupport", "5.2"
|
8
|
+
|
9
|
+
gemspec path: "../"
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "codeclimate-test-reporter", "~> 1.0.0", group: :test, require: nil
|
6
|
+
gem "roqua_styleguide", git: "https://gitlab.roqua.nl/roqua/styleguide.git"
|
7
|
+
gem "activesupport", "6.0"
|
8
|
+
|
9
|
+
gemspec path: "../"
|
@@ -27,25 +27,25 @@ module Roqua
|
|
27
27
|
# rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
28
28
|
def to_patient
|
29
29
|
{
|
30
|
-
status:
|
31
|
-
source:
|
32
|
-
identities:
|
33
|
-
firstname:
|
34
|
-
initials:
|
35
|
-
lastname:
|
30
|
+
status: status,
|
31
|
+
source: source,
|
32
|
+
identities: identities,
|
33
|
+
firstname: name.firstname,
|
34
|
+
initials: name.initials,
|
35
|
+
lastname: name.lastname,
|
36
36
|
display_name: name.display_name,
|
37
|
-
nickname:
|
38
|
-
email:
|
37
|
+
nickname: name.nickname,
|
38
|
+
email: email,
|
39
39
|
address_type: address.address_type,
|
40
|
-
street:
|
41
|
-
city:
|
42
|
-
zipcode:
|
43
|
-
country:
|
44
|
-
birthdate:
|
45
|
-
gender:
|
46
|
-
phone_cell:
|
47
|
-
medoq_data:
|
48
|
-
deceased:
|
40
|
+
street: address.street,
|
41
|
+
city: address.city,
|
42
|
+
zipcode: address.zipcode,
|
43
|
+
country: address.country,
|
44
|
+
birthdate: birthdate,
|
45
|
+
gender: gender,
|
46
|
+
phone_cell: phone_cell,
|
47
|
+
medoq_data: medoq_data,
|
48
|
+
deceased: deceased
|
49
49
|
}
|
50
50
|
end
|
51
51
|
# rubocop:enable Metrics/AbcSize, Metrics/MethodLength
|
data/roqua-healthy.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |gem|
|
|
20
20
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
21
21
|
gem.require_paths = ['lib']
|
22
22
|
|
23
|
-
gem.add_dependency 'activesupport', '>= 3.2', '< 6'
|
23
|
+
gem.add_dependency 'activesupport', '>= 3.2', '< 6.1'
|
24
24
|
gem.add_dependency 'addressable', '~> 2.3'
|
25
25
|
gem.add_dependency 'builder'
|
26
26
|
gem.add_dependency 'phonelib', '~> 0.6'
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
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.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marten Veldthuis
|
8
8
|
- Jorn van de Beek
|
9
9
|
- Samuel Esposito
|
10
10
|
- Henk van der Veen
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2020-07-10 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: activesupport
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
version: '3.2'
|
23
23
|
- - "<"
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: '6'
|
25
|
+
version: '6.1'
|
26
26
|
type: :runtime
|
27
27
|
prerelease: false
|
28
28
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '3.2'
|
33
33
|
- - "<"
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: '6'
|
35
|
+
version: '6.1'
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: addressable
|
38
38
|
requirement: !ruby/object:Gem::Requirement
|
@@ -300,6 +300,9 @@ files:
|
|
300
300
|
- gemfiles/rails41.gemfile
|
301
301
|
- gemfiles/rails42.gemfile
|
302
302
|
- gemfiles/rails50.gemfile
|
303
|
+
- gemfiles/rails51.gemfile
|
304
|
+
- gemfiles/rails52.gemfile
|
305
|
+
- gemfiles/rails60.gemfile
|
303
306
|
- lib/roqua/errors.rb
|
304
307
|
- lib/roqua/healthy.rb
|
305
308
|
- lib/roqua/healthy/a19.rb
|
@@ -380,7 +383,7 @@ homepage: https://github.com/roqua/healthy
|
|
380
383
|
licenses:
|
381
384
|
- MIT
|
382
385
|
metadata: {}
|
383
|
-
post_install_message:
|
386
|
+
post_install_message:
|
384
387
|
rdoc_options: []
|
385
388
|
require_paths:
|
386
389
|
- lib
|
@@ -395,8 +398,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
395
398
|
- !ruby/object:Gem::Version
|
396
399
|
version: '0'
|
397
400
|
requirements: []
|
398
|
-
|
399
|
-
|
401
|
+
rubyforge_project:
|
402
|
+
rubygems_version: 2.7.6.2
|
403
|
+
signing_key:
|
400
404
|
specification_version: 4
|
401
405
|
summary: Arranges communication between Mirth and RoQua
|
402
406
|
test_files:
|