nonnative 1.108.0 → 1.109.0
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/.circleci/config.yml +30 -2
- data/.rubocop.yml +5 -2
- data/CHANGELOG.md +37 -0
- data/Gemfile.lock +37 -28
- data/lib/nonnative/cucumber.rb +4 -12
- data/lib/nonnative/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec0c9a126e9b5b8e02c9ac05f66fb156afaccca630a549c21731d0eaf4db9dd3
|
|
4
|
+
data.tar.gz: 995103d4139ebdf4d6a1e4181ecfa95f6998c2ba55c5bcaace89704461060689
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a62754a9383e9f126ce83998876d8ebee533a63359dd2fbd456bbbe77bef5fab2bbcdea4bf3488255757664357914690ddceef6f296f2dd16924a6243a1bb5e1
|
|
7
|
+
data.tar.gz: 9d7a0bec50fbb6ebdaa8b77734d4122c0449357eea1718edfd2e8d8d84987a4e4c5aec2b92de7e2f369fb35e2d738ef6d727bb04498ba86a023e4d5387a4b547
|
data/.circleci/config.yml
CHANGED
|
@@ -3,7 +3,7 @@ version: 2.1
|
|
|
3
3
|
jobs:
|
|
4
4
|
build:
|
|
5
5
|
docker:
|
|
6
|
-
- image: alexfalkowski/ruby:1.
|
|
6
|
+
- image: alexfalkowski/ruby:1.100
|
|
7
7
|
working_directory: ~/nonnative
|
|
8
8
|
steps:
|
|
9
9
|
- checkout:
|
|
@@ -31,9 +31,20 @@ jobs:
|
|
|
31
31
|
path: test/reports
|
|
32
32
|
- run: make codecov-upload
|
|
33
33
|
resource_class: arm.large
|
|
34
|
+
sync:
|
|
35
|
+
docker:
|
|
36
|
+
- image: alexfalkowski/release:5.59
|
|
37
|
+
working_directory: ~/nonnative
|
|
38
|
+
steps:
|
|
39
|
+
- checkout:
|
|
40
|
+
method: blobless
|
|
41
|
+
- run: git submodule sync
|
|
42
|
+
- run: git submodule update --init
|
|
43
|
+
- run: make sync push
|
|
44
|
+
resource_class: arm.large
|
|
34
45
|
version:
|
|
35
46
|
docker:
|
|
36
|
-
- image: alexfalkowski/release:5.
|
|
47
|
+
- image: alexfalkowski/release:5.59
|
|
37
48
|
working_directory: ~/nonnative
|
|
38
49
|
steps:
|
|
39
50
|
- checkout:
|
|
@@ -42,11 +53,23 @@ jobs:
|
|
|
42
53
|
- run: git submodule update --init
|
|
43
54
|
- run: version
|
|
44
55
|
resource_class: arm.large
|
|
56
|
+
wait-all:
|
|
57
|
+
docker:
|
|
58
|
+
- image: alexfalkowski/ruby:1.100
|
|
59
|
+
steps:
|
|
60
|
+
- run: echo "all applicable jobs finished"
|
|
61
|
+
resource_class: arm.large
|
|
45
62
|
|
|
46
63
|
workflows:
|
|
47
64
|
nonnative:
|
|
48
65
|
jobs:
|
|
49
66
|
- build
|
|
67
|
+
- sync:
|
|
68
|
+
requires:
|
|
69
|
+
- build
|
|
70
|
+
filters:
|
|
71
|
+
branches:
|
|
72
|
+
ignore: master
|
|
50
73
|
- version:
|
|
51
74
|
context: gh
|
|
52
75
|
requires:
|
|
@@ -54,3 +77,8 @@ workflows:
|
|
|
54
77
|
filters:
|
|
55
78
|
branches:
|
|
56
79
|
only: master
|
|
80
|
+
- wait-all:
|
|
81
|
+
requires:
|
|
82
|
+
- build
|
|
83
|
+
- sync
|
|
84
|
+
- version
|
data/.rubocop.yml
CHANGED
|
@@ -10,6 +10,9 @@ AllCops:
|
|
|
10
10
|
Layout/LineLength:
|
|
11
11
|
Max: 150
|
|
12
12
|
|
|
13
|
+
Lint/HashCompareByIdentity:
|
|
14
|
+
Enabled: false
|
|
15
|
+
|
|
13
16
|
Metrics/MethodLength:
|
|
14
17
|
Max: 20
|
|
15
18
|
|
|
@@ -25,8 +28,8 @@ Metrics/ClassLength:
|
|
|
25
28
|
Style/Documentation:
|
|
26
29
|
Enabled: false
|
|
27
30
|
|
|
28
|
-
|
|
31
|
+
Style/NumericPredicate:
|
|
29
32
|
Enabled: false
|
|
30
33
|
|
|
31
|
-
Style/
|
|
34
|
+
Style/FileOpen:
|
|
32
35
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,43 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## [v1.109.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.109.0) - 2026-03-17
|
|
10
|
+
|
|
11
|
+
- [`c3d5b01`](https://github.com/alexfalkowski/nonnative/commit/c3d5b0150b76c2f7adbf3df514da4caef48938d1) feat(cucumber): use wait_for for healthy and unhealthy (#781)
|
|
12
|
+
- [`7f96912`](https://github.com/alexfalkowski/nonnative/commit/7f96912122d4c4ec158e2d2a2f80732809e6942e) build(ci): use latest published images (#780)
|
|
13
|
+
- [`f489497`](https://github.com/alexfalkowski/nonnative/commit/f4894979d327283061dbe9ceef79222262d6360f) build(deps): upgraded github.com/alexfalkowski/bin (#779)
|
|
14
|
+
- [`6ff8684`](https://github.com/alexfalkowski/nonnative/commit/6ff8684acb51509df49b164884567c260ef15cad) build(ci): use latest published images (#778)
|
|
15
|
+
- [`f818467`](https://github.com/alexfalkowski/nonnative/commit/f8184677fdb0dcf6741857f5063770031fbcd939) test(deps): bump ruby-lsp from 0.26.7 to 0.26.8 (#776)
|
|
16
|
+
- [`1fc4d36`](https://github.com/alexfalkowski/nonnative/commit/1fc4d36bbc31460038e4bd52f3a0dbf2d4f0b805) build(deps): bump bin from `59b1ab0` to `a7996aa` (#777)
|
|
17
|
+
- [`970ba28`](https://github.com/alexfalkowski/nonnative/commit/970ba283dc50d514c7cb0359d7ccb7e88a07918b) build(ci): use alexfalkowski/release:5.58 (#775)
|
|
18
|
+
- [`a0ac1c9`](https://github.com/alexfalkowski/nonnative/commit/a0ac1c907a8d9f21e55c9311d472e3d994c212fd) test(deps): upgraded bundler to 4.0.8 (#774)
|
|
19
|
+
- [`5778b0f`](https://github.com/alexfalkowski/nonnative/commit/5778b0f92e5bf0bfc4f00083ece8e67b2b14ec13) build(ci): use latest published images (#773)
|
|
20
|
+
- [`7a24b2d`](https://github.com/alexfalkowski/nonnative/commit/7a24b2de00d01d049e2f8ade4c89468317b27739) build(ci): add wait-all (#772)
|
|
21
|
+
- [`be6bede`](https://github.com/alexfalkowski/nonnative/commit/be6bedecb19381b0e8f6c70caf7abf4ac7e426f2) build(ci): use latest published images (#771)
|
|
22
|
+
- [`959fff1`](https://github.com/alexfalkowski/nonnative/commit/959fff1884973ac08a3975eebaa93d91e2f7f10a) build(ci): use latest published images (#770)
|
|
23
|
+
- [`2633d39`](https://github.com/alexfalkowski/nonnative/commit/2633d39c0d41eccaf965fcc3d0358e8930af82a8) test(deps): bump retriable from 3.3.0 to 3.4.1 (#769)
|
|
24
|
+
- [`af83337`](https://github.com/alexfalkowski/nonnative/commit/af83337c8ec5c82532c8f696b12a683851076c64) test(deps): bump retriable from 3.2.1 to 3.3.0 (#767)
|
|
25
|
+
- [`4e0a68b`](https://github.com/alexfalkowski/nonnative/commit/4e0a68b34f41e61391c9858a1706178f23df91c1) build(deps): bump bin from `000304e` to `59b1ab0` (#768)
|
|
26
|
+
- [`0dfec9f`](https://github.com/alexfalkowski/nonnative/commit/0dfec9fc3e459b982f7f2e75c130d058b17b0cdd) build(ci): use latest published images (#766)
|
|
27
|
+
- [`9f69a38`](https://github.com/alexfalkowski/nonnative/commit/9f69a386ad52a68cf72a24d95842ee78d3293188) test(deps): make update-all-dep (#765)
|
|
28
|
+
- [`e71512b`](https://github.com/alexfalkowski/nonnative/commit/e71512b58a7670d94b4e3119aecebdecfaa879ac) test(deps): bump rubocop from 1.85.0 to 1.85.1 (#764)
|
|
29
|
+
- [`8942a9a`](https://github.com/alexfalkowski/nonnative/commit/8942a9a03ce533a40f0e670d0fb2d2a24e4496b4) build(deps): upgraded github.com/alexfalkowski/bin (#763)
|
|
30
|
+
- [`3dc78dd`](https://github.com/alexfalkowski/nonnative/commit/3dc78dd7e54cfb31a095eafc50304521fc266cff) build(ci): use latest published images (#762)
|
|
31
|
+
- [`fc30adc`](https://github.com/alexfalkowski/nonnative/commit/fc30adc4e70a83356558345f231c3cffe8c57332) build(ci): use latest published images (#761)
|
|
32
|
+
- [`7aaeb3d`](https://github.com/alexfalkowski/nonnative/commit/7aaeb3d98dc3ef3e28b166cd5c73ed1dfc16734a) test(deps): bump rubocop from 1.84.2 to 1.85.0 (#760)
|
|
33
|
+
- [`6e3053c`](https://github.com/alexfalkowski/nonnative/commit/6e3053cf3f6ed9becfefd4b0eb991b5f4dc704db) build(ci): use latest published images (#759)
|
|
34
|
+
- [`706939a`](https://github.com/alexfalkowski/nonnative/commit/706939addc59be998ac8893c5beb2a449b11074e) build(ci): use latest published images (#758)
|
|
35
|
+
- [`a5f30ef`](https://github.com/alexfalkowski/nonnative/commit/a5f30efa008c1f7b8e896edfe97b43bb068601f8) build(ci): use latest published images (#754)
|
|
36
|
+
- [`5150df4`](https://github.com/alexfalkowski/nonnative/commit/5150df4ed96e9e371ce25bea889ebb2cbdc69904) build(deps): bump bin from `60f3a4b` to `b165431` (#755)
|
|
37
|
+
- [`ed974ea`](https://github.com/alexfalkowski/nonnative/commit/ed974ea12ed9adfaacce2c89bd4067f99e691a4e) build(ci): use resource_class: large (#756)
|
|
38
|
+
- [`540fc17`](https://github.com/alexfalkowski/nonnative/commit/540fc174b50fb6c3f7d86b6fbcf2f726b4a6f304) test(deps): bump grpc from 1.78.0 to 1.78.1 (#748)
|
|
39
|
+
- [`328cfb8`](https://github.com/alexfalkowski/nonnative/commit/328cfb8ee829ebe3f825d797deed47e003e5540e) test(deps): bump retriable from 3.2.0 to 3.2.1 (#749)
|
|
40
|
+
- [`ff7f0de`](https://github.com/alexfalkowski/nonnative/commit/ff7f0dec49079ce1c628100436613f6faa91122d) test(deps): bump ruby-lsp from 0.26.6 to 0.26.7 (#750)
|
|
41
|
+
- [`8b9f04b`](https://github.com/alexfalkowski/nonnative/commit/8b9f04b6a492646a8f2cec5b6701b1968afda36e) test(deps): bump retriable from 3.1.2 to 3.2.0 (#747)
|
|
42
|
+
- [`004fd69`](https://github.com/alexfalkowski/nonnative/commit/004fd696347bd763ef9b2df9d008cccaae093c39) build(ci): use latest published images (#746)
|
|
43
|
+
- [`e0888ae`](https://github.com/alexfalkowski/nonnative/commit/e0888ae8e714cdf3d2484d83eaa39876f9ed05e9) test(deps): bump rack from 3.2.4 to 3.2.5 (#745)
|
|
44
|
+
- [`c1c3645`](https://github.com/alexfalkowski/nonnative/commit/c1c3645a799b925663b0daf2d161357dea6be413) build(ci): use latest published images (#744)
|
|
45
|
+
|
|
9
46
|
## [v1.108.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.108.0) - 2026-02-13
|
|
10
47
|
|
|
11
48
|
- [`7683fb1`](https://github.com/alexfalkowski/nonnative/commit/7683fb15b8d68531dd7a309217c0ff6503f1ca51) feat(docs): update to reflect important information (#743)
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
nonnative (1.
|
|
4
|
+
nonnative (1.109.0)
|
|
5
5
|
concurrent-ruby (>= 1, < 2)
|
|
6
6
|
config (>= 5, < 6)
|
|
7
7
|
cucumber (>= 7, < 11)
|
|
@@ -18,6 +18,8 @@ PATH
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
20
20
|
specs:
|
|
21
|
+
addressable (2.8.9)
|
|
22
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
21
23
|
ast (2.4.3)
|
|
22
24
|
base64 (0.3.0)
|
|
23
25
|
benchmark-malloc (0.2.0)
|
|
@@ -42,53 +44,58 @@ GEM
|
|
|
42
44
|
multi_test (~> 1.1)
|
|
43
45
|
sys-uname (~> 1.3)
|
|
44
46
|
cucumber-ci-environment (11.0.0)
|
|
45
|
-
cucumber-core (16.
|
|
46
|
-
cucumber-gherkin (>
|
|
47
|
-
cucumber-messages (>
|
|
47
|
+
cucumber-core (16.2.0)
|
|
48
|
+
cucumber-gherkin (> 36, < 40)
|
|
49
|
+
cucumber-messages (> 31, < 33)
|
|
48
50
|
cucumber-tag-expressions (> 6, < 9)
|
|
49
51
|
cucumber-cucumber-expressions (18.0.1)
|
|
50
52
|
bigdecimal
|
|
51
|
-
cucumber-gherkin (
|
|
52
|
-
cucumber-messages (
|
|
53
|
-
cucumber-html-formatter (22.
|
|
54
|
-
cucumber-messages (>
|
|
55
|
-
cucumber-messages (
|
|
53
|
+
cucumber-gherkin (39.0.0)
|
|
54
|
+
cucumber-messages (>= 31, < 33)
|
|
55
|
+
cucumber-html-formatter (22.3.0)
|
|
56
|
+
cucumber-messages (> 23, < 33)
|
|
57
|
+
cucumber-messages (32.2.0)
|
|
56
58
|
cucumber-tag-expressions (8.1.0)
|
|
57
59
|
deep_merge (1.2.2)
|
|
58
60
|
diff-lcs (1.6.2)
|
|
59
61
|
docile (1.4.1)
|
|
60
62
|
domain_name (0.6.20240107)
|
|
61
|
-
ffi (1.17.
|
|
62
|
-
ffi (1.17.
|
|
63
|
+
ffi (1.17.3-x86_64-darwin)
|
|
64
|
+
ffi (1.17.3-x86_64-linux-gnu)
|
|
63
65
|
get_process_mem (1.0.0)
|
|
64
66
|
bigdecimal (>= 2.0)
|
|
65
67
|
ffi (~> 1.0)
|
|
66
|
-
google-protobuf (4.
|
|
68
|
+
google-protobuf (4.34.0-x86_64-darwin)
|
|
67
69
|
bigdecimal
|
|
68
|
-
rake (
|
|
69
|
-
google-protobuf (4.
|
|
70
|
+
rake (~> 13.3)
|
|
71
|
+
google-protobuf (4.34.0-x86_64-linux-gnu)
|
|
70
72
|
bigdecimal
|
|
71
|
-
rake (
|
|
73
|
+
rake (~> 13.3)
|
|
72
74
|
googleapis-common-protos-types (1.22.0)
|
|
73
75
|
google-protobuf (~> 4.26)
|
|
74
|
-
grpc (1.78.
|
|
76
|
+
grpc (1.78.1-x86_64-darwin)
|
|
75
77
|
google-protobuf (>= 3.25, < 5.0)
|
|
76
78
|
googleapis-common-protos-types (~> 1.0)
|
|
77
|
-
grpc (1.78.
|
|
79
|
+
grpc (1.78.1-x86_64-linux-gnu)
|
|
78
80
|
google-protobuf (>= 3.25, < 5.0)
|
|
79
81
|
googleapis-common-protos-types (~> 1.0)
|
|
80
82
|
http-accept (1.7.0)
|
|
81
83
|
http-cookie (1.1.0)
|
|
82
84
|
domain_name (~> 0.5)
|
|
83
85
|
json (2.18.1)
|
|
86
|
+
json-schema (6.1.0)
|
|
87
|
+
addressable (~> 2.8)
|
|
88
|
+
bigdecimal (>= 3.1, < 5)
|
|
84
89
|
language_server-protocol (3.17.0.5)
|
|
85
90
|
lint_roller (1.1.0)
|
|
86
91
|
logger (1.7.0)
|
|
92
|
+
mcp (0.8.0)
|
|
93
|
+
json-schema (>= 4.1)
|
|
87
94
|
memoist3 (1.0.0)
|
|
88
95
|
mime-types (3.7.0)
|
|
89
96
|
logger
|
|
90
97
|
mime-types-data (~> 3.2025, >= 3.2025.0507)
|
|
91
|
-
mime-types-data (3.
|
|
98
|
+
mime-types-data (3.2026.0303)
|
|
92
99
|
mini_mime (1.1.5)
|
|
93
100
|
multi_test (1.1.0)
|
|
94
101
|
mustermann (3.0.4)
|
|
@@ -97,14 +104,15 @@ GEM
|
|
|
97
104
|
nio4r (2.7.5)
|
|
98
105
|
ostruct (0.6.3)
|
|
99
106
|
parallel (1.27.0)
|
|
100
|
-
parser (3.3.10.
|
|
107
|
+
parser (3.3.10.2)
|
|
101
108
|
ast (~> 2.4.1)
|
|
102
109
|
racc
|
|
103
110
|
prism (1.9.0)
|
|
111
|
+
public_suffix (7.0.5)
|
|
104
112
|
puma (7.2.0)
|
|
105
113
|
nio4r (~> 2.0)
|
|
106
114
|
racc (1.8.1)
|
|
107
|
-
rack (3.2.
|
|
115
|
+
rack (3.2.5)
|
|
108
116
|
rack-protection (4.2.1)
|
|
109
117
|
base64 (>= 0.1.0)
|
|
110
118
|
logger (>= 1.6.0)
|
|
@@ -123,7 +131,7 @@ GEM
|
|
|
123
131
|
http-cookie (>= 1.0.2, < 2.0)
|
|
124
132
|
mime-types (>= 1.16, < 4.0)
|
|
125
133
|
netrc (~> 0.8)
|
|
126
|
-
retriable (3.1
|
|
134
|
+
retriable (3.4.1)
|
|
127
135
|
rexml (3.4.4)
|
|
128
136
|
rspec (3.13.2)
|
|
129
137
|
rspec-core (~> 3.13.0)
|
|
@@ -139,16 +147,17 @@ GEM
|
|
|
139
147
|
rspec-expectations (3.13.5)
|
|
140
148
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
141
149
|
rspec-support (~> 3.13.0)
|
|
142
|
-
rspec-mocks (3.13.
|
|
150
|
+
rspec-mocks (3.13.8)
|
|
143
151
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
144
152
|
rspec-support (~> 3.13.0)
|
|
145
|
-
rspec-support (3.13.
|
|
153
|
+
rspec-support (3.13.7)
|
|
146
154
|
rspec-wait (1.0.2)
|
|
147
155
|
rspec (>= 3.4)
|
|
148
|
-
rubocop (1.
|
|
156
|
+
rubocop (1.85.1)
|
|
149
157
|
json (~> 2.3)
|
|
150
158
|
language_server-protocol (~> 3.17.0.2)
|
|
151
159
|
lint_roller (~> 1.1.0)
|
|
160
|
+
mcp (~> 0.6)
|
|
152
161
|
parallel (~> 1.10)
|
|
153
162
|
parser (>= 3.3.0.2)
|
|
154
163
|
rainbow (>= 2.2.2, < 4.0)
|
|
@@ -159,7 +168,7 @@ GEM
|
|
|
159
168
|
rubocop-ast (1.49.0)
|
|
160
169
|
parser (>= 3.3.7.2)
|
|
161
170
|
prism (~> 1.7)
|
|
162
|
-
ruby-lsp (0.26.
|
|
171
|
+
ruby-lsp (0.26.8)
|
|
163
172
|
language_server-protocol (~> 3.17.0)
|
|
164
173
|
prism (>= 1.2, < 2.0)
|
|
165
174
|
rbs (>= 3, < 5)
|
|
@@ -181,10 +190,10 @@ GEM
|
|
|
181
190
|
rack-protection (= 4.2.1)
|
|
182
191
|
rack-session (>= 2.0.0, < 3)
|
|
183
192
|
tilt (~> 2.0)
|
|
184
|
-
sys-uname (1.
|
|
193
|
+
sys-uname (1.5.0)
|
|
185
194
|
ffi (~> 1.1)
|
|
186
195
|
memoist3 (~> 1.0.0)
|
|
187
|
-
tilt (2.
|
|
196
|
+
tilt (2.7.0)
|
|
188
197
|
tsort (0.2.0)
|
|
189
198
|
unicode-display_width (3.2.0)
|
|
190
199
|
unicode-emoji (~> 4.1)
|
|
@@ -204,4 +213,4 @@ DEPENDENCIES
|
|
|
204
213
|
simplecov-cobertura
|
|
205
214
|
|
|
206
215
|
BUNDLED WITH
|
|
207
|
-
4.0.
|
|
216
|
+
4.0.8
|
data/lib/nonnative/cucumber.rb
CHANGED
|
@@ -49,12 +49,8 @@ Given('I should see {string} as unhealthy') do |service|
|
|
|
49
49
|
read_timeout: 10, open_timeout: 10
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
wait_for
|
|
53
|
-
|
|
54
|
-
@response.code
|
|
55
|
-
end.to eq(503)
|
|
56
|
-
|
|
57
|
-
expect(@response.body).to include(service)
|
|
52
|
+
wait_for { Nonnative.observability.health(opts).code }.to eq(503)
|
|
53
|
+
wait_for { Nonnative.observability.health(opts).body }.to include(service)
|
|
58
54
|
end
|
|
59
55
|
|
|
60
56
|
Then('I should reset the proxy for process {string}') do |name|
|
|
@@ -104,10 +100,6 @@ Then('I should see {string} as healthy') do |service|
|
|
|
104
100
|
read_timeout: 10, open_timeout: 10
|
|
105
101
|
}
|
|
106
102
|
|
|
107
|
-
wait_for
|
|
108
|
-
|
|
109
|
-
@response.code
|
|
110
|
-
end.to eq(200)
|
|
111
|
-
|
|
112
|
-
expect(@response.body).to_not include(service)
|
|
103
|
+
wait_for { Nonnative.observability.health(opts).code }.to eq(200)
|
|
104
|
+
wait_for { Nonnative.observability.health(opts).body }.to_not include(service)
|
|
113
105
|
end
|
data/lib/nonnative/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nonnative
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.109.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alejandro Falkowski
|
|
@@ -331,7 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
331
331
|
- !ruby/object:Gem::Version
|
|
332
332
|
version: '0'
|
|
333
333
|
requirements: []
|
|
334
|
-
rubygems_version: 4.0.
|
|
334
|
+
rubygems_version: 4.0.8
|
|
335
335
|
specification_version: 4
|
|
336
336
|
summary: Allows you to keep using the power of ruby to test other systems
|
|
337
337
|
test_files: []
|