nonnative 1.81.0 → 1.83.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f83ff6f1e34bc3c76d320b42d6f953b19c84b64a8e5f7765f84b5e8d8e69dd4e
4
- data.tar.gz: 66e8c0aa6cd0bb55efe2b2e9cc898a3b35778bb0386b843e1f6c9b24aee85753
3
+ metadata.gz: 2d594f67fc5d69f339e48aaec08fc46bf85d55edebf714325700c971d26616c5
4
+ data.tar.gz: 0ce8f6b9044622d9822efb335e7bfdd3201f064b12cafd31a71bbe6052af3338
5
5
  SHA512:
6
- metadata.gz: f93d715a75fa193b3d403cb17c9ff8f070a69983a2ab63cefbb628cf2012104f8d513a77435839365ca3d1c47112b8aea73ce856688d5648e4376c5e930c4062
7
- data.tar.gz: e8f51bbe05ac3b386639a24bbd6972636ac3e72136e256398e548adcbbf13b424be804409dc7813ea305674f4bd853e069c950d4d03d26dd9db8c4f982737654
6
+ metadata.gz: 475a610a708bf8ad73a5e4c42340fe15bfa0c27495c2bb1387447483c263a3eeda6d8e29686ae74623232bc116edd023610bec7f0490b2306c40b20ebbc6d863
7
+ data.tar.gz: 2f1f5e8ceda0297ea4797ee4bead4a485a340f4e027fcecef43f06ab01f75f3a86c7fc83f69e906be0ba44442b4aa6ea73ce0ef6defcb6f03fa7b85cfceb49ff
data/.circleci/config.yml CHANGED
@@ -1,8 +1,5 @@
1
1
  version: 2.1
2
2
 
3
- orbs:
4
- codecov: codecov/codecov@4.0.1
5
-
6
3
  jobs:
7
4
  build:
8
5
  docker:
@@ -26,11 +23,10 @@ jobs:
26
23
  - run: make lint
27
24
  - run: make features
28
25
  - store_test_results:
29
- path: reports
26
+ path: test/reports
30
27
  - store_artifacts:
31
- path: reports
32
- - codecov/upload:
33
- file: reports/coverage.xml
28
+ path: test/reports
29
+ - run: make codecov-upload
34
30
  resource_class: large
35
31
  release:
36
32
  docker:
data/.config/cucumber.yml CHANGED
@@ -1 +1 @@
1
- report: --format junit --out reports --format html --out reports/index.html --format pretty --publish-quiet
1
+ report: --format junit --out test/reports --format html --out test/reports/index.html --format pretty --publish-quiet
data/.gitignore CHANGED
@@ -3,6 +3,6 @@
3
3
  /_yardoc/
4
4
  /doc/
5
5
  /pkg/
6
- /reports/
6
+ test/reports/*
7
7
  /tmp/
8
8
  vendor
data/CHANGELOG.md CHANGED
@@ -6,6 +6,178 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
 
7
7
  ## Unreleased
8
8
 
9
+ ## [v1.83.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.83.0) - 2024-11-06
10
+
11
+ - [`7e69c40`](https://github.com/alexfalkowski/nonnative/commit/7e69c40dcdae1f9f6e0051ce19421a661c68a7f8) feat(sinatra): update sinatra (>= 4, < 5) (#455)
12
+
13
+ ## [v1.82.31](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.31) - 2024-11-06
14
+
15
+ - [`b22be99`](https://github.com/alexfalkowski/nonnative/commit/b22be99cc218fa4ad5a08c1ed34cb2be8508f15c) fix(deps): bump ruby-lsp from 0.21.2 to 0.21.3 (#454)
16
+
17
+ ## [v1.82.30](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.30) - 2024-11-04
18
+
19
+ - [`7b58e44`](https://github.com/alexfalkowski/nonnative/commit/7b58e44c7a2ae4d8f47632cb072c27066dd0cf48) build(deps): bump bin from `e8f9d73` to `cf4a7d3` (#453)
20
+ - [`841dce2`](https://github.com/alexfalkowski/nonnative/commit/841dce25ee68f5089c70f805ca6d4c731d5cc9d9) fix(deps): bump ruby-lsp from 0.21.1 to 0.21.2 (#452)
21
+
22
+ ## [v1.82.29](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.29) - 2024-11-01
23
+
24
+ - [`e1b54c0`](https://github.com/alexfalkowski/nonnative/commit/e1b54c05f00f9296e951112daf9e87afdebcf820) fix(deps): bump rubocop from 1.67.0 to 1.68.0 (#451)
25
+
26
+ ## [v1.82.28](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.28) - 2024-11-01
27
+
28
+ - [`45acf48`](https://github.com/alexfalkowski/nonnative/commit/45acf48ad07dc44318bba5ed175d61204347717e) fix(deps): bump ruby-lsp from 0.20.1 to 0.21.1 (#450)
29
+
30
+ ## [v1.82.27](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.27) - 2024-10-28
31
+
32
+ - [`b3a5237`](https://github.com/alexfalkowski/nonnative/commit/b3a52378229ae59d1da64f02157b259959fe6d8c) fix(deps): bump rexml from 3.3.6 to 3.3.9 (#449)
33
+
34
+ ## [v1.82.26](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.26) - 2024-10-17
35
+
36
+ - [`9f087a6`](https://github.com/alexfalkowski/nonnative/commit/9f087a6bd2d1c7125e8abaa64c5c8a05e049d56d) fix(deps): bump ruby-lsp from 0.20.0 to 0.20.1 (#448)
37
+
38
+ ## [v1.82.25](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.25) - 2024-10-16
39
+
40
+ - [`9b23326`](https://github.com/alexfalkowski/nonnative/commit/9b23326466c432dee2c35b53b0c906eb8ec7f280) fix(deps): bump rubocop from 1.66.1 to 1.67.0 (#447)
41
+
42
+ ## [v1.82.24](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.24) - 2024-10-14
43
+
44
+ - [`594c2b5`](https://github.com/alexfalkowski/nonnative/commit/594c2b567a7d4e72cffaad5391262954048d6829) fix(deps): bump ruby-lsp from 0.19.1 to 0.20.0 (#446)
45
+
46
+ ## [v1.82.23](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.23) - 2024-10-09
47
+
48
+ - [`acabeee`](https://github.com/alexfalkowski/nonnative/commit/acabeeec459a81725dd805d2e05b5972d7cc9c69) fix(deps): bump grpc from 1.66.0 to 1.67.0 (#445)
49
+
50
+ ## [v1.82.22](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.22) - 2024-10-07
51
+
52
+ - [`75d2034`](https://github.com/alexfalkowski/nonnative/commit/75d2034595d14028a3622fda2dcc8bfb632f47c0) fix(deps): bump ruby-lsp from 0.19.0 to 0.19.1 (#444)
53
+
54
+ ## [v1.82.21](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.21) - 2024-10-03
55
+
56
+ - [`354c8f8`](https://github.com/alexfalkowski/nonnative/commit/354c8f838a0e0b9231858c00883796a78a1ce7a8) fix(deps): bump ruby-lsp from 0.18.4 to 0.19.0 (#443)
57
+ - [`550b592`](https://github.com/alexfalkowski/nonnative/commit/550b5922ce6f5adc2834bbe885e588a79d031aa1) build(deps): bump bin from `8b87d26` to `e8f9d73` (#442)
58
+
59
+ ## [v1.82.20](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.20) - 2024-10-01
60
+
61
+ - [`c4e0678`](https://github.com/alexfalkowski/nonnative/commit/c4e0678aa023aebc22390ea7cd2f4575cabc8f2f) fix(deps): bump ruby-lsp from 0.18.3 to 0.18.4 (#441)
62
+
63
+ ## [v1.82.19](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.19) - 2024-09-25
64
+
65
+ - [`e5a6be0`](https://github.com/alexfalkowski/nonnative/commit/e5a6be05baafd994c51444dc22bbd8aca3d2d1ec) fix(deps): bump config from 5.5.1 to 5.5.2 (#439)
66
+
67
+ ## [v1.82.18](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.18) - 2024-09-25
68
+
69
+ - [`0e1611c`](https://github.com/alexfalkowski/nonnative/commit/0e1611c975414b1c1c315acc53450bbe254c6236) fix(deps): bump ruby-lsp from 0.18.2 to 0.18.3 (#440)
70
+
71
+ ## [v1.82.17](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.17) - 2024-09-24
72
+
73
+ - [`2720287`](https://github.com/alexfalkowski/nonnative/commit/272028740a35aaa1abd9b404ec6210201cbce1d6) fix(deps): bump ruby-lsp from 0.18.1 to 0.18.2 (#438)
74
+
75
+ ## [v1.82.16](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.16) - 2024-09-23
76
+
77
+ - [`b4fa2e3`](https://github.com/alexfalkowski/nonnative/commit/b4fa2e35cfed944477e4e76f727676e6b14b5450) fix(deps): bump ruby-lsp from 0.18.0 to 0.18.1 (#437)
78
+
79
+ ## [v1.82.15](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.15) - 2024-09-20
80
+
81
+ - [`4ab696d`](https://github.com/alexfalkowski/nonnative/commit/4ab696ddf9740bd463f2ee2a9a6ec884da9db66c) fix(deps): bump ruby-lsp from 0.17.17 to 0.18.0 (#435)
82
+
83
+ ## [v1.82.14](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.14) - 2024-09-20
84
+
85
+ - [`ecedac6`](https://github.com/alexfalkowski/nonnative/commit/ecedac692a5e208cd84173396670e8bf9661e0d7) fix(deps): bump puma from 6.4.2 to 6.4.3 (#436)
86
+
87
+ ## [v1.82.13](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.13) - 2024-09-19
88
+
89
+ - [`de28cfe`](https://github.com/alexfalkowski/nonnative/commit/de28cfebf3d1a80251fe55b42eb001ffdbb0400a) fix(deps): bump google-protobuf from 4.27.3 to 4.27.5 (#434)
90
+ - [`efbbd21`](https://github.com/alexfalkowski/nonnative/commit/efbbd217a51b4685407dffb25055223a8d6364d7) build(deps): bump bin from `b975eab` to `8b87d26` (#433)
91
+ - [`075a229`](https://github.com/alexfalkowski/nonnative/commit/075a22999e5c0d1216260fcd8ed6f8f11bc3d74b) build(deps): bump bin from `1eca781` to `b975eab` (#432)
92
+
93
+ ## [v1.82.12](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.12) - 2024-09-09
94
+
95
+ - [`38b36cf`](https://github.com/alexfalkowski/nonnative/commit/38b36cfca4b4e3237e38cb04adc581d5fd69808f) fix(deps): bump rspec-expectations from 3.13.2 to 3.13.3 (#431)
96
+
97
+ ## [v1.82.11](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.11) - 2024-09-05
98
+
99
+ - [`6bf96b3`](https://github.com/alexfalkowski/nonnative/commit/6bf96b3597950ab155f79e3a06ffa19f44fdac96) fix(deps): bump rubocop from 1.66.0 to 1.66.1 (#430)
100
+
101
+ ## [v1.82.10](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.10) - 2024-09-02
102
+
103
+ - [`d63f105`](https://github.com/alexfalkowski/nonnative/commit/d63f105855bfe943b724b4609ee9e4c2964f509d) fix(deps): bump rubocop from 1.65.1 to 1.66.0 (#429)
104
+
105
+ ## [v1.82.9](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.9) - 2024-08-30
106
+
107
+ - [`c25e578`](https://github.com/alexfalkowski/nonnative/commit/c25e57807789edcbc2cdeb9f31515ba849a0bde7) fix(deps): bump ruby-lsp from 0.17.16 to 0.17.17 (#428)
108
+ - [`4c279fd`](https://github.com/alexfalkowski/nonnative/commit/4c279fd1977508915bceac3b635bdf36fe0bb66e) build(deps): bump bin from `4d2cb2a` to `1eca781` (#427)
109
+ - [`12b6bf3`](https://github.com/alexfalkowski/nonnative/commit/12b6bf320d4ffc903d4b6b76a2c195b58bede1f1) build(deps): bump bin from `41b7c8b` to `4d2cb2a` (#426)
110
+
111
+ ## [v1.82.8](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.8) - 2024-08-27
112
+
113
+ - [`a76fa2b`](https://github.com/alexfalkowski/nonnative/commit/a76fa2bd5daa22636cb3dd4135fd02639840f030) fix(deps): bump grpc from 1.65.2 to 1.66.0 (#424)
114
+
115
+ ## [v1.82.7](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.7) - 2024-08-27
116
+
117
+ - [`5781e49`](https://github.com/alexfalkowski/nonnative/commit/5781e491f94f57aab410ce90cd880ffed31cfd5b) fix(deps): bump ruby-lsp from 0.17.15 to 0.17.16 (#425)
118
+
119
+ ## [v1.82.6](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.6) - 2024-08-23
120
+
121
+ - [`cf86bbf`](https://github.com/alexfalkowski/nonnative/commit/cf86bbfba349523e6f4ee7e00d6136c27543c055) fix(deps): bump rexml from 3.3.4 to 3.3.6 (#423)
122
+
123
+ ## [v1.82.5](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.5) - 2024-08-21
124
+
125
+ - [`ab539f2`](https://github.com/alexfalkowski/nonnative/commit/ab539f26edfab85be209e4012ed9c4f2dc9441a3) fix(deps): bump rspec-expectations from 3.13.1 to 3.13.2 (#422)
126
+
127
+ ## [v1.82.4](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.4) - 2024-08-21
128
+
129
+ - [`a34e93d`](https://github.com/alexfalkowski/nonnative/commit/a34e93d6204420f67cf0e6fb21ccb43241a3ecfa) fix(deps): bump ruby-lsp from 0.17.14 to 0.17.15 (#421)
130
+
131
+ ## [v1.82.3](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.3) - 2024-08-20
132
+
133
+ - [`e26d004`](https://github.com/alexfalkowski/nonnative/commit/e26d004cff6a2f2ae80f2f2884be339a7b407cef) fix(deps): bump ruby-lsp from 0.17.13 to 0.17.14 (#420)
134
+
135
+ ## [v1.82.2](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.2) - 2024-08-15
136
+
137
+ - [`03912b7`](https://github.com/alexfalkowski/nonnative/commit/03912b77e9a7bd81bfb6904aa50a8b4ab1a03f60) fix(deps): bump ruby-lsp from 0.17.12 to 0.17.13 (#418)
138
+ - [`905aadc`](https://github.com/alexfalkowski/nonnative/commit/905aadcca14bd65b13e4c955a2189996dddf94b6) build(deps): bump bin from `bc89e5f` to `41b7c8b` (#419)
139
+ - [`e2ea08d`](https://github.com/alexfalkowski/nonnative/commit/e2ea08d1bfb02a6c04d4a6be52753d620e462b8f) build(deps): bump bin from `9871d16` to `bc89e5f` (#417)
140
+ - [`062c5d7`](https://github.com/alexfalkowski/nonnative/commit/062c5d7ea58ccdb18e3e2dffb3fd2e2c74580320) build(codecov): add codecov (#415)
141
+ - [`9e9c4ce`](https://github.com/alexfalkowski/nonnative/commit/9e9c4ce7d127bec4d38fc8686a433a848735d510) build(deps): bump bin from `808558f` to `9871d16` (#416)
142
+
143
+ ## [v1.82.1](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.1) - 2024-08-12
144
+
145
+ - [`6be5886`](https://github.com/alexfalkowski/nonnative/commit/6be588625e0d04ce9132d00ef7bfabf9edc720bc) fix(deps): bump concurrent-ruby from 1.3.3 to 1.3.4 (#414)
146
+ - [`3cf27d7`](https://github.com/alexfalkowski/nonnative/commit/3cf27d707c8dea111d879659f7d2aaf99fa23b86) build(deps): bump bin from `44badfa` to `808558f` (#413)
147
+
148
+ ## [v1.82.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.82.0) - 2024-08-08
149
+
150
+ - [`fff293e`](https://github.com/alexfalkowski/nonnative/commit/fff293ed25a062a474913f2fbf7625c4762da245) feat(go): do not truncate after 16 chars (#412)
151
+ - [`2e7944f`](https://github.com/alexfalkowski/nonnative/commit/2e7944f78d565629d1afc00993adf50c82b9933f) build(ci): remove coveralls (#410)
152
+
153
+ ## [v1.81.6](https://github.com/alexfalkowski/nonnative/releases/tag/v1.81.6) - 2024-08-05
154
+
155
+ - [`57687d4`](https://github.com/alexfalkowski/nonnative/commit/57687d442fb909d39711c0f48bcb17aecbd1b416) fix(deps): bump ruby-lsp from 0.17.10 to 0.17.11 (#409)
156
+
157
+ ## [v1.81.5](https://github.com/alexfalkowski/nonnative/releases/tag/v1.81.5) - 2024-08-02
158
+
159
+ - [`6779c24`](https://github.com/alexfalkowski/nonnative/commit/6779c24658162d9c4ec66ae628a0158716fe6fd5) fix(deps): bump rubocop from 1.65.0 to 1.65.1 (#408)
160
+
161
+ ## [v1.81.4](https://github.com/alexfalkowski/nonnative/releases/tag/v1.81.4) - 2024-07-31
162
+
163
+ - [`76b0559`](https://github.com/alexfalkowski/nonnative/commit/76b0559916d86d20c9435b4b87efeb50287a5723) fix(deps): bump ruby-lsp from 0.17.9 to 0.17.10 (#406)
164
+
165
+ ## [v1.81.3](https://github.com/alexfalkowski/nonnative/releases/tag/v1.81.3) - 2024-07-30
166
+
167
+ - [`6f075d4`](https://github.com/alexfalkowski/nonnative/commit/6f075d42f63651d01a1aa5fa619326b5a9a970dc) fix(deps): bump rexml from 3.3.1 to 3.3.2 (#405)
168
+
169
+ ## [v1.81.2](https://github.com/alexfalkowski/nonnative/releases/tag/v1.81.2) - 2024-07-29
170
+
171
+ - [`8684427`](https://github.com/alexfalkowski/nonnative/commit/8684427b1a9d23ea3f525aba63a2882aa9757e6b) fix(deps): bump grpc from 1.65.1 to 1.65.2 (#404)
172
+
173
+ ## [v1.81.1](https://github.com/alexfalkowski/nonnative/releases/tag/v1.81.1) - 2024-07-24
174
+
175
+ - [`50112ae`](https://github.com/alexfalkowski/nonnative/commit/50112ae96bc18e2ceba23e206709459f1aa6cc42) fix(deps): bump ruby-lsp from 0.17.8 to 0.17.9 (#403)
176
+
177
+ ## [v1.81.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.81.0) - 2024-07-23
178
+
179
+ - [`ad59898`](https://github.com/alexfalkowski/nonnative/commit/ad59898a7674aa3357ca44f5322f7200628137ee) feat(deps): upgraded get_process_mem (1.0.0) (#402)
180
+
9
181
  ## [v1.80.15](https://github.com/alexfalkowski/nonnative/releases/tag/v1.80.15) - 2024-07-19
10
182
 
11
183
  - [`5b47bc5`](https://github.com/alexfalkowski/nonnative/commit/5b47bc52006ee5b8bd7801db217d0f650e4519c4) fix(deps): bump ruby-lsp from 0.17.7 to 0.17.8 (#400)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nonnative (1.81.0)
4
+ nonnative (1.83.0)
5
5
  concurrent-ruby (>= 1, < 2)
6
6
  config (>= 5, < 6)
7
7
  cucumber (>= 7, < 10)
@@ -11,7 +11,7 @@ PATH
11
11
  rest-client (>= 2, < 3)
12
12
  rspec-benchmark (>= 0, < 1)
13
13
  rspec-expectations (>= 3, < 4)
14
- sinatra (>= 2, < 5)
14
+ sinatra (>= 4, < 5)
15
15
 
16
16
  GEM
17
17
  remote: https://rubygems.org/
@@ -22,10 +22,11 @@ GEM
22
22
  benchmark-perf (0.6.0)
23
23
  benchmark-trend (0.4.0)
24
24
  bigdecimal (3.1.8)
25
- builder (3.2.4)
26
- concurrent-ruby (1.3.3)
27
- config (5.5.1)
25
+ builder (3.3.0)
26
+ concurrent-ruby (1.3.4)
27
+ config (5.5.2)
28
28
  deep_merge (~> 1.2, >= 1.2.1)
29
+ ostruct
29
30
  cucumber (9.2.0)
30
31
  builder (~> 3.2)
31
32
  cucumber-ci-environment (> 9, < 11)
@@ -39,7 +40,7 @@ GEM
39
40
  multi_test (~> 1.1)
40
41
  sys-uname (~> 1.2)
41
42
  cucumber-ci-environment (10.0.1)
42
- cucumber-core (13.0.2)
43
+ cucumber-core (13.0.3)
43
44
  cucumber-gherkin (>= 27, < 28)
44
45
  cucumber-messages (>= 20, < 23)
45
46
  cucumber-tag-expressions (> 5, < 7)
@@ -47,62 +48,66 @@ GEM
47
48
  bigdecimal
48
49
  cucumber-gherkin (27.0.0)
49
50
  cucumber-messages (>= 19.1.4, < 23)
50
- cucumber-html-formatter (21.3.1)
51
- cucumber-messages (> 19, < 25)
51
+ cucumber-html-formatter (21.7.0)
52
+ cucumber-messages (> 19, < 27)
52
53
  cucumber-messages (22.0.0)
53
- cucumber-tag-expressions (6.1.0)
54
+ cucumber-tag-expressions (6.1.1)
54
55
  deep_merge (1.2.2)
55
56
  diff-lcs (1.5.1)
56
- docile (1.4.0)
57
+ docile (1.4.1)
57
58
  domain_name (0.6.20240107)
58
- ffi (1.16.3)
59
+ ffi (1.17.0-arm64-darwin)
60
+ ffi (1.17.0-x86_64-darwin)
61
+ ffi (1.17.0-x86_64-linux-gnu)
59
62
  get_process_mem (1.0.0)
60
63
  bigdecimal (>= 2.0)
61
64
  ffi (~> 1.0)
62
- google-protobuf (4.27.2-arm64-darwin)
65
+ google-protobuf (4.28.3-arm64-darwin)
63
66
  bigdecimal
64
67
  rake (>= 13)
65
- google-protobuf (4.27.2-x86_64-darwin)
68
+ google-protobuf (4.28.3-x86_64-darwin)
66
69
  bigdecimal
67
70
  rake (>= 13)
68
- google-protobuf (4.27.2-x86_64-linux)
71
+ google-protobuf (4.28.3-x86_64-linux)
69
72
  bigdecimal
70
73
  rake (>= 13)
71
- googleapis-common-protos-types (1.15.0)
74
+ googleapis-common-protos-types (1.16.0)
72
75
  google-protobuf (>= 3.18, < 5.a)
73
- grpc (1.65.1-arm64-darwin)
76
+ grpc (1.67.0-arm64-darwin)
74
77
  google-protobuf (>= 3.25, < 5.0)
75
78
  googleapis-common-protos-types (~> 1.0)
76
- grpc (1.65.1-x86_64-darwin)
79
+ grpc (1.67.0-x86_64-darwin)
77
80
  google-protobuf (>= 3.25, < 5.0)
78
81
  googleapis-common-protos-types (~> 1.0)
79
- grpc (1.65.1-x86_64-linux)
82
+ grpc (1.67.0-x86_64-linux)
80
83
  google-protobuf (>= 3.25, < 5.0)
81
84
  googleapis-common-protos-types (~> 1.0)
82
85
  http-accept (1.7.0)
83
- http-cookie (1.0.5)
86
+ http-cookie (1.0.7)
84
87
  domain_name (~> 0.5)
85
- json (2.7.2)
88
+ json (2.7.6)
86
89
  language_server-protocol (3.17.0.3)
87
- logger (1.6.0)
88
- mime-types (3.5.2)
90
+ logger (1.6.1)
91
+ mime-types (3.6.0)
92
+ logger
89
93
  mime-types-data (~> 3.2015)
90
- mime-types-data (3.2024.0507)
94
+ mime-types-data (3.2024.1105)
91
95
  mini_mime (1.1.5)
92
96
  multi_test (1.1.0)
93
- mustermann (3.0.0)
97
+ mustermann (3.0.3)
94
98
  ruby2_keywords (~> 0.0.1)
95
99
  netrc (0.11.0)
96
- nio4r (2.7.3)
97
- parallel (1.25.1)
98
- parser (3.3.4.0)
100
+ nio4r (2.7.4)
101
+ ostruct (0.6.0)
102
+ parallel (1.26.3)
103
+ parser (3.3.6.0)
99
104
  ast (~> 2.4.1)
100
105
  racc
101
- prism (0.30.0)
102
- puma (6.4.2)
106
+ prism (1.2.0)
107
+ puma (6.4.3)
103
108
  nio4r (~> 2.0)
104
- racc (1.8.0)
105
- rack (3.0.11)
109
+ racc (1.8.1)
110
+ rack (3.1.8)
106
111
  rack-protection (4.0.0)
107
112
  base64 (>= 0.1.0)
108
113
  rack (>= 3.0.0, < 4)
@@ -110,7 +115,7 @@ GEM
110
115
  rack (>= 3.0.0)
111
116
  rainbow (3.1.1)
112
117
  rake (13.2.1)
113
- rbs (3.5.2)
118
+ rbs (3.6.1)
114
119
  logger
115
120
  regexp_parser (2.9.2)
116
121
  rest-client (2.1.0)
@@ -118,8 +123,7 @@ GEM
118
123
  http-cookie (>= 1.0.2, < 2.0)
119
124
  mime-types (>= 1.16, < 4.0)
120
125
  netrc (~> 0.8)
121
- rexml (3.3.1)
122
- strscan
126
+ rexml (3.3.9)
123
127
  rspec (3.13.0)
124
128
  rspec-core (~> 3.13.0)
125
129
  rspec-expectations (~> 3.13.0)
@@ -129,31 +133,30 @@ GEM
129
133
  benchmark-perf (~> 0.6)
130
134
  benchmark-trend (~> 0.4)
131
135
  rspec (>= 3.0)
132
- rspec-core (3.13.0)
136
+ rspec-core (3.13.2)
133
137
  rspec-support (~> 3.13.0)
134
- rspec-expectations (3.13.1)
138
+ rspec-expectations (3.13.3)
135
139
  diff-lcs (>= 1.2.0, < 2.0)
136
140
  rspec-support (~> 3.13.0)
137
- rspec-mocks (3.13.1)
141
+ rspec-mocks (3.13.2)
138
142
  diff-lcs (>= 1.2.0, < 2.0)
139
143
  rspec-support (~> 3.13.0)
140
144
  rspec-support (3.13.1)
141
- rubocop (1.65.0)
145
+ rubocop (1.68.0)
142
146
  json (~> 2.3)
143
147
  language_server-protocol (>= 3.17.0)
144
148
  parallel (~> 1.10)
145
149
  parser (>= 3.3.0.2)
146
150
  rainbow (>= 2.2.2, < 4.0)
147
151
  regexp_parser (>= 2.4, < 3.0)
148
- rexml (>= 3.2.5, < 4.0)
149
- rubocop-ast (>= 1.31.1, < 2.0)
152
+ rubocop-ast (>= 1.32.2, < 2.0)
150
153
  ruby-progressbar (~> 1.7)
151
154
  unicode-display_width (>= 2.4.0, < 3.0)
152
- rubocop-ast (1.31.3)
155
+ rubocop-ast (1.34.0)
153
156
  parser (>= 3.3.1.0)
154
- ruby-lsp (0.17.8)
157
+ ruby-lsp (0.21.3)
155
158
  language_server-protocol (~> 3.17.0)
156
- prism (>= 0.29.0, < 0.31)
159
+ prism (>= 1.2, < 2.0)
157
160
  rbs (>= 3, < 4)
158
161
  sorbet-runtime (>= 0.5.10782)
159
162
  ruby-progressbar (1.13.0)
@@ -165,7 +168,7 @@ GEM
165
168
  simplecov-cobertura (2.1.0)
166
169
  rexml
167
170
  simplecov (~> 0.19)
168
- simplecov-html (0.12.3)
171
+ simplecov-html (0.13.1)
169
172
  simplecov_json_formatter (0.1.4)
170
173
  sinatra (4.0.0)
171
174
  mustermann (~> 3.0)
@@ -173,12 +176,11 @@ GEM
173
176
  rack-protection (= 4.0.0)
174
177
  rack-session (>= 2.0.0, < 3)
175
178
  tilt (~> 2.0)
176
- sorbet-runtime (0.5.11485)
177
- strscan (3.1.0)
178
- sys-uname (1.2.3)
179
+ sorbet-runtime (0.5.11637)
180
+ sys-uname (1.3.0)
179
181
  ffi (~> 1.1)
180
- tilt (2.3.0)
181
- unicode-display_width (2.5.0)
182
+ tilt (2.4.0)
183
+ unicode-display_width (2.6.0)
182
184
 
183
185
  PLATFORMS
184
186
  arm64-darwin-22
data/README.md CHANGED
@@ -66,7 +66,7 @@ Nonnative.configure do |config|
66
66
  p.timeout = 5
67
67
  p.wait = 0.1
68
68
  p.port = 12_321
69
- p.log = 'reports/12_321.log'
69
+ p.log = '12_321.log'
70
70
  p.signal = 'INT' # Possible values are described in Signal.list.keys.
71
71
  p.environment = { # Pass environment variables to process.
72
72
  'TEST' => 'true'
@@ -79,7 +79,7 @@ Nonnative.configure do |config|
79
79
  p.timeout = 0.5
80
80
  p.wait = 0.1
81
81
  p.port = 12_322
82
- p.log = 'reports/12_322.log'
82
+ p.log = '12_322.log'
83
83
  end
84
84
  end
85
85
  ```
@@ -95,7 +95,7 @@ processes:
95
95
  timeout: 5
96
96
  wait: 0.1
97
97
  port: 12321
98
- log: reports/12_321.log
98
+ log: 12_321.log
99
99
  signal: INT # Possible values are described in Signal.list.keys.
100
100
  environment: # Pass environment variables to process.
101
101
  TEST: true
@@ -105,7 +105,7 @@ processes:
105
105
  timeout: 5
106
106
  wait: 0.1
107
107
  port: 12322
108
- log: reports/12_322.log
108
+ log: 12_322.log
109
109
  ```
110
110
 
111
111
  Then load the file with
@@ -162,7 +162,7 @@ Nonnative.configure do |config|
162
162
  s.klass = Nonnative::EchoServer
163
163
  s.timeout = 1
164
164
  s.port = 12_323
165
- s.log = 'reports/server_1.log'
165
+ s.log = 'server_1.log'
166
166
  end
167
167
 
168
168
  config.server do |s|
@@ -170,7 +170,7 @@ Nonnative.configure do |config|
170
170
  s.klass = Nonnative::EchoServer
171
171
  s.timeout = 1
172
172
  s.port = 12_324
173
- s.log = 'reports/server_2.log'
173
+ s.log = 'server_2.log'
174
174
  end
175
175
  end
176
176
  ```
@@ -185,13 +185,13 @@ servers:
185
185
  class: Nonnative::EchoServer
186
186
  timeout: 1
187
187
  port: 12323
188
- log: reports/server_1.log
188
+ log: server_1.log
189
189
  -
190
190
  name: server_2
191
191
  class: Nonnative::EchoServer
192
192
  timeout: 1
193
193
  port: 12324
194
- log: reports/server_2.log
194
+ log: server_2.log
195
195
  ```
196
196
 
197
197
  Then load the file with:
@@ -241,7 +241,7 @@ Nonnative.configure do |config|
241
241
  s.klass = Nonnative::Features::HTTPServer
242
242
  s.timeout = 1
243
243
  s.port = 4567
244
- s.log = 'reports/http_server_1.log'
244
+ s.log = 'http_server_1.log'
245
245
  end
246
246
  end
247
247
  ```
@@ -256,7 +256,7 @@ servers:
256
256
  class: Nonnative::Features::HTTPServer
257
257
  timeout: 1
258
258
  port: 4567
259
- log: reports/http_server_1.log
259
+ log: http_server_1.log
260
260
  ```
261
261
 
262
262
  Then load the file with:
@@ -302,7 +302,7 @@ Nonnative.configure do |config|
302
302
  s.klass = Nonnative::Features::GRPCServer
303
303
  s.timeout = 1
304
304
  s.port = 9002
305
- s.log = 'reports/grpc_server_1.log'
305
+ s.log = 'grpc_server_1.log'
306
306
  end
307
307
  end
308
308
  ```
@@ -317,7 +317,7 @@ servers:
317
317
  class: Nonnative::Features::GRPCServer
318
318
  timeout: 1
319
319
  port: 9002
320
- log: reports/grpc_server_1.log
320
+ log: grpc_server_1.log
321
321
  ```
322
322
 
323
323
  Then load the file with:
@@ -393,7 +393,7 @@ Nonnative.configure do |config|
393
393
  p.proxy = {
394
394
  kind: 'fault_injection',
395
395
  port: 20_000,
396
- log: 'reports/proxy_server.log',
396
+ log: 'proxy_server.log',
397
397
  options: {
398
398
  delay: 5
399
399
  }
@@ -411,7 +411,7 @@ processes:
411
411
  proxy:
412
412
  kind: fault_injection
413
413
  port: 20000
414
- log: reports/proxy_server.log
414
+ log: proxy_server.log
415
415
  options:
416
416
  delay: 5
417
417
  ```
@@ -428,7 +428,7 @@ Nonnative.configure do |config|
428
428
  s.proxy = {
429
429
  kind: 'fault_injection',
430
430
  port: 20_000,
431
- log: 'reports/proxy_server.log',
431
+ log: 'proxy_server.log',
432
432
  options: {
433
433
  delay: 5
434
434
  }
@@ -446,7 +446,7 @@ servers:
446
446
  proxy:
447
447
  kind: fault_injection
448
448
  port: 20000
449
- log: reports/proxy_server.log
449
+ log: proxy_server.log
450
450
  options:
451
451
  delay: 5
452
452
  ```
@@ -463,7 +463,7 @@ Nonnative.configure do |config|
463
463
  s.proxy = {
464
464
  kind: 'fault_injection',
465
465
  port: 20_000,
466
- log: 'reports/proxy_server.log',
466
+ log: 'proxy_server.log',
467
467
  options: {
468
468
  delay: 5
469
469
  }
@@ -481,7 +481,7 @@ services:
481
481
  proxy:
482
482
  kind: fault_injection
483
483
  port: 20000
484
- log: reports/proxy_server.log
484
+ log: proxy_server.log
485
485
  options:
486
486
  delay: 5
487
487
  ```
@@ -598,5 +598,5 @@ processes:
598
598
  - --config config.yaml
599
599
  timeout: 5
600
600
  port: 8000
601
- log: reports/go.log
601
+ log: go.log
602
602
  ```
@@ -21,7 +21,7 @@ module Nonnative
21
21
  suffix = SecureRandom.alphanumeric(4)
22
22
  m = File.basename(exec, File.extname(exec))
23
23
  p = params.gsub(/\W/, '')
24
- name = [m, cmd, p].reject(&:empty?).join('-')[0...15]
24
+ name = [m, cmd, p].reject(&:empty?).join('-')
25
25
  path = "#{output}/#{name}-#{suffix}"
26
26
 
27
27
  prof(path) + trace(path) + cover(path)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nonnative
4
- VERSION = '1.81.0'
4
+ VERSION = '1.83.0'
5
5
  end
data/nonnative.gemspec CHANGED
@@ -33,5 +33,5 @@ Gem::Specification.new do |spec|
33
33
  spec.add_dependency 'rest-client', '>= 2', '< 3'
34
34
  spec.add_dependency 'rspec-benchmark', '>= 0', '< 1'
35
35
  spec.add_dependency 'rspec-expectations', '>= 3', '< 4'
36
- spec.add_dependency 'sinatra', '>= 2', '< 5'
36
+ spec.add_dependency 'sinatra', '>= 4', '< 5'
37
37
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nonnative
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.81.0
4
+ version: 1.83.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Falkowski
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-23 00:00:00.000000000 Z
11
+ date: 2024-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -196,7 +196,7 @@ dependencies:
196
196
  requirements:
197
197
  - - ">="
198
198
  - !ruby/object:Gem::Version
199
- version: '2'
199
+ version: '4'
200
200
  - - "<"
201
201
  - !ruby/object:Gem::Version
202
202
  version: '5'
@@ -206,7 +206,7 @@ dependencies:
206
206
  requirements:
207
207
  - - ">="
208
208
  - !ruby/object:Gem::Version
209
- version: '2'
209
+ version: '4'
210
210
  - - "<"
211
211
  - !ruby/object:Gem::Version
212
212
  version: '5'
@@ -219,13 +219,11 @@ extra_rdoc_files: []
219
219
  files:
220
220
  - ".circleci/config.yml"
221
221
  - ".config/cucumber.yml"
222
- - ".coveralls.yml"
223
222
  - ".editorconfig"
224
223
  - ".github/dependabot.yml"
225
224
  - ".gitignore"
226
225
  - ".gitmodules"
227
226
  - ".rubocop.yml"
228
- - ".ruby-version"
229
227
  - CHANGELOG.md
230
228
  - Gemfile
231
229
  - Gemfile.lock
@@ -292,7 +290,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
292
290
  - !ruby/object:Gem::Version
293
291
  version: '0'
294
292
  requirements: []
295
- rubygems_version: 3.5.11
293
+ rubygems_version: 3.5.16
296
294
  signing_key:
297
295
  specification_version: 4
298
296
  summary: Allows you to keep using the power of ruby to test other systems
data/.coveralls.yml DELETED
@@ -1 +0,0 @@
1
- repo_token: x3EcMK4Nr770BeIFZengeQ2DLDCDjNfNo
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- ruby-3.3.3