cucumber-messages 30.1.0 → 31.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 +4 -4
- data/VERSION +1 -1
- data/lib/cucumber/messages/pickle.rb +8 -0
- metadata +2 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0612e74943512bc45ead600ccba2a0f3ee7398cd669853a88bce3c4bdde47e1
|
|
4
|
+
data.tar.gz: 318df321d72a4da4cd663d41ddf1bbc04c30f06cacb5bc8eb314412927d857e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d5089a71cce6e1c9c0c8b0e143ab415859374267e43f633c9d70f21234dfc358f2cf305776c4f0d00a189f008e2a66114dd73edae90e6ec0fe64ec803043a80
|
|
7
|
+
data.tar.gz: f7c0d9c07d5bcc74d971353b23f6198e74b6ba1da762fe2035ff50307ae2f7e51f5f76e97e55300ac06ba04a95d8a8e43c0230d36658650e2a5ff30042e2212b
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
31.0.1
|
|
@@ -29,6 +29,11 @@ module Cucumber
|
|
|
29
29
|
##
|
|
30
30
|
attr_reader :uri
|
|
31
31
|
|
|
32
|
+
##
|
|
33
|
+
# The location of this pickle in source file. A pickle constructed from `Examples` will point to the example row.
|
|
34
|
+
##
|
|
35
|
+
attr_reader :location
|
|
36
|
+
|
|
32
37
|
##
|
|
33
38
|
# The name of the pickle
|
|
34
39
|
##
|
|
@@ -60,6 +65,7 @@ module Cucumber
|
|
|
60
65
|
def initialize(
|
|
61
66
|
id: '',
|
|
62
67
|
uri: '',
|
|
68
|
+
location: nil,
|
|
63
69
|
name: '',
|
|
64
70
|
language: '',
|
|
65
71
|
steps: [],
|
|
@@ -68,6 +74,7 @@ module Cucumber
|
|
|
68
74
|
)
|
|
69
75
|
@id = id
|
|
70
76
|
@uri = uri
|
|
77
|
+
@location = location
|
|
71
78
|
@name = name
|
|
72
79
|
@language = language
|
|
73
80
|
@steps = steps
|
|
@@ -89,6 +96,7 @@ module Cucumber
|
|
|
89
96
|
new(
|
|
90
97
|
id: hash[:id],
|
|
91
98
|
uri: hash[:uri],
|
|
99
|
+
location: Location.from_h(hash[:location]),
|
|
92
100
|
name: hash[:name],
|
|
93
101
|
language: hash[:language],
|
|
94
102
|
steps: hash[:steps]&.map { |item| PickleStep.from_h(item) },
|
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:
|
|
4
|
+
version: 31.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aslak Hellesøy
|
|
@@ -9,20 +9,6 @@ bindir: bin
|
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
|
-
- !ruby/object:Gem::Dependency
|
|
13
|
-
name: cucumber-compatibility-kit
|
|
14
|
-
requirement: !ruby/object:Gem::Requirement
|
|
15
|
-
requirements:
|
|
16
|
-
- - "~>"
|
|
17
|
-
- !ruby/object:Gem::Version
|
|
18
|
-
version: '15.0'
|
|
19
|
-
type: :development
|
|
20
|
-
prerelease: false
|
|
21
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
-
requirements:
|
|
23
|
-
- - "~>"
|
|
24
|
-
- !ruby/object:Gem::Version
|
|
25
|
-
version: '15.0'
|
|
26
12
|
- !ruby/object:Gem::Dependency
|
|
27
13
|
name: rake
|
|
28
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -215,5 +201,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
215
201
|
requirements: []
|
|
216
202
|
rubygems_version: 3.6.9
|
|
217
203
|
specification_version: 4
|
|
218
|
-
summary: cucumber-messages-
|
|
204
|
+
summary: cucumber-messages-31.0.1
|
|
219
205
|
test_files: []
|