cucumber-messages 32.0.0 → 32.0.1

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
  SHA256:
3
- metadata.gz: 22948e1804c8a58b18d627069a7059fd5159b216f5ab060566b6d64ddb8a0ef8
4
- data.tar.gz: 2d835ad4322075786327c0de5fe4abcee3b6844f1c78756bfdbb65ae0b7177a8
3
+ metadata.gz: dd4b8928019054aeae285bca824ce0cdb50d2f53f1fe7265b5508457685c22df
4
+ data.tar.gz: 6e5b1f15d24f53d8f367eb16286814336bb0832fee23b3896577eca40c6eaaf4
5
5
  SHA512:
6
- metadata.gz: ffde39e6ff9b7ab2c879fa50fda045747002f0eef37c99b7fff4cfa53c431792515d63c6df4a36e34b270188423aa8c5e163278039117c1516eda042782c3504
7
- data.tar.gz: b3c96c1402ea842434b24b0661689e69c71b9e1e5f58e3584dd749215aee0b0d01883b35f07b6d0ff213356a947a10175e3f63702e15eb3de868540e6702ee8c
6
+ metadata.gz: 6139bce00d8c386c895ae872b04ca46fe016fd34124968cdb0558b86d3e444da469e8d35395b27f8b5b4cfb8e0eca2397decc73843a8a8340f408f338ada1781
7
+ data.tar.gz: 4d6a97d0aa4e9ff18782ea4ec8703f62d26b8670370adc58b4ba89d43214b794c642bb91891cd19a9d124b15dd9ddb267328322fc75d9793d5c3ccbb77831221
data/VERSION CHANGED
@@ -1 +1 @@
1
- 32.0.0
1
+ 32.0.1
@@ -31,14 +31,14 @@ module Cucumber
31
31
  attr_reader :media_type
32
32
 
33
33
  ##
34
- # The identifier of the test step if the attachment was created during the execution of a test step
34
+ # The identifier of the test case attempt if the attachment was created during the execution of a test step
35
35
  ##
36
- attr_reader :test_step_id
36
+ attr_reader :test_case_started_id
37
37
 
38
38
  ##
39
- # The identifier of the test case attempt if the attachment was created during the execution of a test step
39
+ # The identifier of the test step if the attachment was created during the execution of a test step
40
40
  ##
41
- attr_reader :test_case_started_id
41
+ attr_reader :test_step_id
42
42
 
43
43
  ##
44
44
  # The identifier of the test run hook execution if the attachment was created during the execution of a test run hook
@@ -53,15 +53,15 @@ module Cucumber
53
53
  def initialize(
54
54
  url: '',
55
55
  media_type: '',
56
- test_step_id: nil,
57
56
  test_case_started_id: nil,
57
+ test_step_id: nil,
58
58
  test_run_hook_started_id: nil,
59
59
  timestamp: nil
60
60
  )
61
61
  @url = url
62
62
  @media_type = media_type
63
- @test_step_id = test_step_id
64
63
  @test_case_started_id = test_case_started_id
64
+ @test_step_id = test_step_id
65
65
  @test_run_hook_started_id = test_run_hook_started_id
66
66
  @timestamp = timestamp
67
67
  super()
@@ -80,8 +80,8 @@ module Cucumber
80
80
  new(
81
81
  url: hash[:url],
82
82
  media_type: hash[:mediaType],
83
- test_step_id: hash[:testStepId],
84
83
  test_case_started_id: hash[:testCaseStartedId],
84
+ test_step_id: hash[:testStepId],
85
85
  test_run_hook_started_id: hash[:testRunHookStartedId],
86
86
  timestamp: Timestamp.from_h(hash[:timestamp])
87
87
  )
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber-messages
3
3
  version: !ruby/object:Gem::Version
4
- version: 32.0.0
4
+ version: 32.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aslak Hellesøy
@@ -203,5 +203,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
203
203
  requirements: []
204
204
  rubygems_version: 3.6.9
205
205
  specification_version: 4
206
- summary: cucumber-messages-32.0.0
206
+ summary: cucumber-messages-32.0.1
207
207
  test_files: []