parallel_report_portal 2.5.0 → 2.5.1

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: dca25702756ef6361e293e078cbca0e4a7b3e58e01a172729f49a319fa43fd15
4
- data.tar.gz: 81397b39a9131c2ef601e782da487c7ec5be55cb6a90e8ba98d00de5c95248b5
3
+ metadata.gz: 0ebfbbf1153557d31ea6ebc2fceb53c6aebc1561202e6af4a4ca83bd8ad0c449
4
+ data.tar.gz: 94e856fee4ce2614e8ee2c323eedbb2da50752b380d0904bda22b169d93e8a2a
5
5
  SHA512:
6
- metadata.gz: 8b1fd11d745dbba815364eadb751c9d8c15ff23fa36fd3c40490d1e2d718c125cc7d83cd7d4f8ca1540114ee86898b2fafc1405809506a92857840adc260d801
7
- data.tar.gz: ef8ba69e9d7cf3f61f78e56b3df1e8e256541192f22c1656267268c5c97a0878bb76ddc5f0411184f12a14d89bdc4396a99aaca2b267e92620204393fb38668d
6
+ metadata.gz: fbbcd51350a431315f30d8d145e9df261302717beeb1340c23d940dedd376af76d8c103e53dc75e8956bdcb70eddde110f1d87596d93c7ad187d9b650b80221b
7
+ data.tar.gz: 144c437942302d95feec99bedab1f3ac938bfbc20452ea7035a940c9f05473989bbb3951930be1f19435f884d19eaa349c1c6176a30f26adf80ae75a4318f3d6
@@ -56,7 +56,7 @@ module ParallelReportPortal
56
56
  #
57
57
  # The initializer will first attempt to load a configuration files called
58
58
  # +report_portal.yml+ (case insensitive) in the both the +config+ and current
59
- # working directory (the former takes precidence). It will then apply
59
+ # working directory (the former takes precedence). It will then apply
60
60
  # any of the environment variable values.
61
61
  def initialize
62
62
  load_configuration_file
@@ -64,6 +64,13 @@ module ParallelReportPortal
64
64
  env_value = get_env("rp_#{attr.to_s}")
65
65
  send(:"#{attr}=", env_value) if env_value
66
66
  end
67
+
68
+ # If this is compiled against OpenSSL v3, we need to turn off the exception raising
69
+ # when the server closes the stream without sending an EOF message in advance
70
+ if OpenSSL::SSL.const_defined?(:OP_IGNORE_UNEXPECTED_EOF)
71
+ # Assign the additional parameter with a bitwise 'or' assignment
72
+ OpenSSL::SSL::SSLContext::DEFAULT_PARAMS[:options] |= OpenSSL::SSL::OP_IGNORE_UNEXPECTED_EOF
73
+ end
67
74
  end
68
75
 
69
76
  # Sets the tags for the launch. If an array is provided, the array is used,
@@ -1,3 +1,3 @@
1
1
  module ParallelReportPortal
2
- VERSION = "2.5.0"
2
+ VERSION = "2.5.1"
3
3
  end
@@ -1,3 +1,4 @@
1
+ require 'openssl'
1
2
  require 'parallel_report_portal/after_launch'
2
3
  require "parallel_report_portal/clock"
3
4
  require "parallel_report_portal/configuration"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parallel_report_portal
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nigel Brookes-Thomas
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-03-06 00:00:00.000000000 Z
12
+ date: 2023-08-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: appraisal
@@ -255,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
255
  - !ruby/object:Gem::Version
256
256
  version: '0'
257
257
  requirements: []
258
- rubygems_version: 3.4.1
258
+ rubygems_version: 3.4.10
259
259
  signing_key:
260
260
  specification_version: 4
261
261
  summary: Run Cucumber Tests in parallel and with Cucumber 3 and 4+