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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a69d14d381de12c9ce4e1cbb04015bf71f2008de5f17bfa9704dab05f9d38791
4
- data.tar.gz: 7c1943cc8598a5c13c66a017278503cb864511238389957c71dd9110580a4d43
3
+ metadata.gz: e402c30237a4c3eeeb578cb4c2a594eba83b6374ce8634259b5bac1c9cf1270b
4
+ data.tar.gz: 344a609880ddf08da1cf0d60dc9e70a1ef2d312a3de887aa11bd71680b5a49bb
5
5
  SHA512:
6
- metadata.gz: d4ae997cb7c753cbffb28dfa7694598ddef996a8e780c9d8299fcf21a8a6d854440c5a3f6ced15e14d87d2e6c662506ce6df1290a102a1aaf04be7eed0dd689d
7
- data.tar.gz: f8dfa8991ae1acf13bdcd5351dd4bcf50e5012aa8cbedd1ffdbf3fd6a788f43b65d24a5cb4d27d1fa0843e7857eac1ffd80b04d1553bb49ba62ad8a65c454d64
6
+ metadata.gz: 67ad548fab99cf59055a425891d0645afbd22598e4a6ce490f6adc26324289ec3c3c038f777b106c02e3746cdc26dcc8f92547c4661f2da71f7d3ac94932b41c
7
+ data.tar.gz: 42c200b696af931d3666a9aa9e0bddfe0983a3f6180c771dae7cbc4f5983fbd3133bf1dc7dc0539e53b4be2bc58bd70fc2afb76dfc1e4ca594d0e4c03ee9ee44
@@ -15,8 +15,26 @@ rubocop:
15
15
  script:
16
16
  - bundle exec rubocop -D
17
17
 
18
- rspec:
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
@@ -31,3 +31,6 @@ Naming/FileName:
31
31
  Exclude:
32
32
  - Appraisals
33
33
 
34
+ # No, I don't want to call my exceptions 'e' instead of 'exception' or 'error'.
35
+ Naming/RescuedExceptionsVariableName:
36
+ Enabled: false
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
@@ -1,4 +1,8 @@
1
- ### 1.6.11
1
+ ### 1.5.12
2
+
3
+ * ActiveSupport 6.0 support
4
+
5
+ ### 1.5.11
2
6
 
3
7
  * Support for PID.11 and PID.13 completely missing from an hl7 response.
4
8
 
@@ -2,7 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "codeclimate-test-reporter", "~> 1.0.0", :group => :test, :require => nil
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 :path => "../"
9
+ gemspec path: "../"
@@ -2,7 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "codeclimate-test-reporter", "~> 1.0.0", :group => :test, :require => nil
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 :path => "../"
9
+ gemspec path: "../"
@@ -2,7 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "codeclimate-test-reporter", "~> 1.0.0", :group => :test, :require => nil
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 :path => "../"
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: status,
31
- source: source,
32
- identities: identities,
33
- firstname: name.firstname,
34
- initials: name.initials,
35
- lastname: name.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: name.nickname,
38
- email: email,
37
+ nickname: name.nickname,
38
+ email: email,
39
39
  address_type: address.address_type,
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
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
@@ -22,7 +22,6 @@ module Roqua
22
22
  headers: {content_type: 'text/xml'},
23
23
  timeout: timeout.to_i
24
24
  ) do |response, _request, _result|
25
-
26
25
  xml_response = Hash.from_xml(response.body)
27
26
 
28
27
  if response.code == 200 && xml_response['oru']['status'] == 'ACK'
@@ -2,6 +2,6 @@
2
2
  module Roqua
3
3
  module Healthy
4
4
  # healthy version
5
- VERSION = "1.5.11"
5
+ VERSION = "1.5.12"
6
6
  end
7
7
  end
@@ -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.11
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: 2019-12-03 00:00:00.000000000 Z
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
- rubygems_version: 3.0.3
399
- signing_key:
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: