cucumber-messages 1.0.4 → 1.1.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 +4 -4
- data/CONTRIBUTING.md +14 -0
- data/cucumber-messages.gemspec +1 -1
- data/lib/cucumber/messages_pb.rb +13 -0
- data/messages.proto +13 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e2286a240c65980c29e98a87af7a6a95f97ad332e60408a9b6c61c5c4937988
|
4
|
+
data.tar.gz: 3695b5c0ebaea493401e1cc6dcc5377996892fb08ca8168a92f9e04759f34cee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6967b76363e89f28f787216f88950cb51de71b63975ec255e8b6e240eaeb1364200d26be3889bb2aa73a8534d6f361b8f8fdcb564bbc91178711914017d9ec45
|
7
|
+
data.tar.gz: f30eb410d0d99b85821660599bf9947bdc0a09fc5e8b960c2afdd3e83ee5d69f586451975f3740f0d5f939ca0ace2a859b4c458d760c9f630e443e0864a262b0
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
Release Process
|
2
|
+
===============
|
3
|
+
|
4
|
+
* Bump the version number in the gemspec
|
5
|
+
* Update `CHANGELOG.md` with the upcoming version number and create a new `In Git` section
|
6
|
+
* Now release it:
|
7
|
+
|
8
|
+
```
|
9
|
+
bundle update
|
10
|
+
bundle exec rake
|
11
|
+
git commit -m "Release X.Y.Z"
|
12
|
+
# Make sure you run gem signin as the cukebot@cucumber.io user before running the following step. Credentials can be found in 1Password
|
13
|
+
rake release
|
14
|
+
```
|
data/cucumber-messages.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.name = 'cucumber-messages'
|
4
|
-
s.version = '1.
|
4
|
+
s.version = '1.1.1'
|
5
5
|
s.authors = ["Aslak Hellesøy"]
|
6
6
|
s.description = "Protocol Buffer messages for Cucumber's inter-process communication"
|
7
7
|
s.summary = "cucumber-messages-#{s.version}"
|
data/lib/cucumber/messages_pb.rb
CHANGED
@@ -15,6 +15,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
15
15
|
optional :testStepStarted, :message, 6, "io.cucumber.messages.TestStepStarted"
|
16
16
|
optional :testStepFinished, :message, 7, "io.cucumber.messages.TestStepFinished"
|
17
17
|
optional :testCaseFinished, :message, 8, "io.cucumber.messages.TestCaseFinished"
|
18
|
+
optional :testHookStarted, :message, 9, "io.cucumber.messages.TestHookStarted"
|
19
|
+
optional :testHookFinished, :message, 10, "io.cucumber.messages.TestHookFinished"
|
18
20
|
end
|
19
21
|
end
|
20
22
|
add_message "io.cucumber.messages.SourceReference" do
|
@@ -188,6 +190,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
188
190
|
optional :testResult, :message, 3, "io.cucumber.messages.TestResult"
|
189
191
|
optional :timestamp, :message, 4, "google.protobuf.Timestamp"
|
190
192
|
end
|
193
|
+
add_message "io.cucumber.messages.TestHookStarted" do
|
194
|
+
optional :pickleId, :string, 1
|
195
|
+
optional :timestamp, :message, 2, "google.protobuf.Timestamp"
|
196
|
+
end
|
197
|
+
add_message "io.cucumber.messages.TestHookFinished" do
|
198
|
+
optional :pickleId, :string, 1
|
199
|
+
optional :testResult, :message, 2, "io.cucumber.messages.TestResult"
|
200
|
+
optional :timestamp, :message, 3, "google.protobuf.Timestamp"
|
201
|
+
end
|
191
202
|
add_message "io.cucumber.messages.TestResult" do
|
192
203
|
optional :status, :enum, 1, "io.cucumber.messages.Status"
|
193
204
|
optional :message, :string, 2
|
@@ -236,6 +247,8 @@ module Cucumber
|
|
236
247
|
TestCaseFinished = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestCaseFinished").msgclass
|
237
248
|
TestStepStarted = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestStepStarted").msgclass
|
238
249
|
TestStepFinished = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestStepFinished").msgclass
|
250
|
+
TestHookStarted = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestHookStarted").msgclass
|
251
|
+
TestHookFinished = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestHookFinished").msgclass
|
239
252
|
TestResult = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.TestResult").msgclass
|
240
253
|
Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("io.cucumber.messages.Status").enummodule
|
241
254
|
end
|
data/messages.proto
CHANGED
@@ -15,6 +15,8 @@ message Wrapper {
|
|
15
15
|
TestStepStarted testStepStarted = 6;
|
16
16
|
TestStepFinished testStepFinished = 7;
|
17
17
|
TestCaseFinished testCaseFinished = 8;
|
18
|
+
TestHookStarted testHookStarted = 9;
|
19
|
+
TestHookFinished testHookFinished = 10;
|
18
20
|
}
|
19
21
|
}
|
20
22
|
|
@@ -228,6 +230,17 @@ message TestStepFinished {
|
|
228
230
|
google.protobuf.Timestamp timestamp = 4;
|
229
231
|
}
|
230
232
|
|
233
|
+
message TestHookStarted {
|
234
|
+
string pickleId = 1;
|
235
|
+
google.protobuf.Timestamp timestamp = 2;
|
236
|
+
}
|
237
|
+
|
238
|
+
message TestHookFinished {
|
239
|
+
string pickleId = 1;
|
240
|
+
TestResult testResult = 2;
|
241
|
+
google.protobuf.Timestamp timestamp = 3;
|
242
|
+
}
|
243
|
+
|
231
244
|
message TestResult {
|
232
245
|
Status status = 1;
|
233
246
|
string message = 2;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber-messages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-09-
|
11
|
+
date: 2018-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -92,6 +92,7 @@ files:
|
|
92
92
|
- ".rsync"
|
93
93
|
- ".subrepo"
|
94
94
|
- ".travis.yml"
|
95
|
+
- CONTRIBUTING.md
|
95
96
|
- Gemfile
|
96
97
|
- LICENSE
|
97
98
|
- Makefile
|
@@ -129,7 +130,7 @@ rubyforge_project:
|
|
129
130
|
rubygems_version: 2.7.7
|
130
131
|
signing_key:
|
131
132
|
specification_version: 4
|
132
|
-
summary: cucumber-messages-1.
|
133
|
+
summary: cucumber-messages-1.1.1
|
133
134
|
test_files:
|
134
135
|
- spec/capture_warnings.rb
|
135
136
|
- spec/coverage.rb
|