nonnative 1.106.0 → 1.107.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 +10 -7
- data/CHANGELOG.md +51 -0
- data/Gemfile.lock +39 -39
- data/lib/nonnative/version.rb +1 -1
- data/nonnative.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a906e384075c90b1e86c9d6e3b89ab5cea13d50a06e403e7a2646eb1689ac64b
|
4
|
+
data.tar.gz: d617213ea910eeedf18f76a8172554f78058d16073d17a3d374592a5117d3864
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5f765bd48e2fa81d93eced56cc04dd6147f7ec26e96a1a7a587417ce9815690c6e73db121735a356f5d9e09f17fd371f0469436ea40e5a6f8cf039babad7fd3
|
7
|
+
data.tar.gz: b799c7f1e3fc4d69d22c4d12d68777b545dfec17532e98fb31d7dba883eb3210c805d401dfbcc72368ab07021f5ca898a8adc43228edf6a79224749b300b0632
|
data/.circleci/config.yml
CHANGED
@@ -3,22 +3,23 @@ version: 2.1
|
|
3
3
|
jobs:
|
4
4
|
build:
|
5
5
|
docker:
|
6
|
-
- image: alexfalkowski/ruby:1.
|
6
|
+
- image: alexfalkowski/ruby:1.52
|
7
7
|
working_directory: ~/nonnative
|
8
8
|
steps:
|
9
9
|
- checkout
|
10
10
|
- run: git submodule sync
|
11
11
|
- run: git submodule update --init
|
12
|
+
- run: make source-key
|
12
13
|
- restore_cache:
|
13
14
|
name: restore deps
|
14
15
|
keys:
|
15
|
-
- nonnative-ruby-cache-{{ checksum "Gemfile.lock" }}
|
16
|
+
- nonnative-ruby-cache-{{ checksum "Gemfile.lock" }}-{{ checksum "~/.ruby-version" }}-{{ checksum ".source-key" }}
|
16
17
|
- nonnative-ruby-cache-
|
17
18
|
- run: make dep
|
18
19
|
- run: make clean-dep
|
19
20
|
- save_cache:
|
20
21
|
name: save deps
|
21
|
-
key: nonnative-ruby-cache-{{ checksum "Gemfile.lock" }}
|
22
|
+
key: nonnative-ruby-cache-{{ checksum "Gemfile.lock" }}-{{ checksum "~/.ruby-version" }}-{{ checksum ".source-key" }}
|
22
23
|
paths:
|
23
24
|
- vendor
|
24
25
|
- run: make lint
|
@@ -29,20 +30,22 @@ jobs:
|
|
29
30
|
path: test/reports
|
30
31
|
- run: make codecov-upload
|
31
32
|
resource_class: large
|
32
|
-
|
33
|
+
version:
|
33
34
|
docker:
|
34
|
-
- image: alexfalkowski/release:
|
35
|
+
- image: alexfalkowski/release:5.11
|
35
36
|
working_directory: ~/nonnative
|
36
37
|
steps:
|
37
38
|
- checkout
|
38
|
-
- run:
|
39
|
+
- run: git submodule sync
|
40
|
+
- run: git submodule update --init
|
41
|
+
- run: version
|
39
42
|
resource_class: large
|
40
43
|
|
41
44
|
workflows:
|
42
45
|
nonnative:
|
43
46
|
jobs:
|
44
47
|
- build
|
45
|
-
-
|
48
|
+
- version:
|
46
49
|
context: gh
|
47
50
|
requires:
|
48
51
|
- build
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,57 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
|
7
7
|
## Unreleased
|
8
8
|
|
9
|
+
## [v1.107.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.107.0) - 2025-09-05
|
10
|
+
|
11
|
+
- [`8aab337`](https://github.com/alexfalkowski/nonnative/commit/8aab337296fd94859bfed52962531f56b5269120) feat(deps): update puma to v7.0.0 (#638)
|
12
|
+
- [`d653801`](https://github.com/alexfalkowski/nonnative/commit/d653801de2208a8bedc0757153d140e22eecbd1c) build(deps): bump bin from `0d75f32` to `870aeb4` (#637)
|
13
|
+
- [`dcdc7ef`](https://github.com/alexfalkowski/nonnative/commit/dcdc7ef3ce5291db92c1f7a7979ccde829857180) test(deps): bump rubocop from 1.80.1 to 1.80.2 (#636)
|
14
|
+
- [`7d3f5a3`](https://github.com/alexfalkowski/nonnative/commit/7d3f5a384fee170c6231cdd81a68e0f44012bea7) build(deps): bump bin from `78fd47f` to `0d75f32` (#635)
|
15
|
+
- [`932fc2c`](https://github.com/alexfalkowski/nonnative/commit/932fc2c21620494b34a294558a46086968a9bfff) build(ci): use latest published images (#633)
|
16
|
+
- [`78be282`](https://github.com/alexfalkowski/nonnative/commit/78be282b55dac3d7609d67c431e814a560502cd4) build(ci): use latest published images (#632)
|
17
|
+
- [`1ba6fbb`](https://github.com/alexfalkowski/nonnative/commit/1ba6fbba6083df001e6e5cf8f3e7a77753bd2ba3) test(deps): bump rubocop from 1.80.0 to 1.80.1 (#631)
|
18
|
+
- [`ff15c32`](https://github.com/alexfalkowski/nonnative/commit/ff15c325ffa178f6c815ec813d51b8059996f8db) test(deps): bump simplecov-cobertura from 3.0.0 to 3.1.0 (#630)
|
19
|
+
- [`5795d16`](https://github.com/alexfalkowski/nonnative/commit/5795d16b308ba0984ff5079926347e8b886df9e1) test(deps): bump rubocop from 1.79.2 to 1.80.0 (#629)
|
20
|
+
- [`36be762`](https://github.com/alexfalkowski/nonnative/commit/36be762177630ec9e8cb3d00046308f3fd28a729) build(deps): bump bin from `901fb2b` to `78fd47f` (#628)
|
21
|
+
- [`acc306c`](https://github.com/alexfalkowski/nonnative/commit/acc306c3ea8b22d83f70d2e611085b7c72040305) test(deps): bump cucumber from 10.0.0 to 10.1.0 (#627)
|
22
|
+
- [`fe419b1`](https://github.com/alexfalkowski/nonnative/commit/fe419b1747a2117db923f3784c73f3ba68a44de6) build(deps): bump bin from `e92253b` to `901fb2b` (#626)
|
23
|
+
- [`003d0ab`](https://github.com/alexfalkowski/nonnative/commit/003d0abd157cbf6b39412a0c9ae744927e63c448) build(ci): use latest published images (#625)
|
24
|
+
- [`a1edb17`](https://github.com/alexfalkowski/nonnative/commit/a1edb1713c9ac0dcba437f15446648348fe1b969) build(deps): bump bin from `bf35764` to `e92253b` (#624)
|
25
|
+
- [`158aabf`](https://github.com/alexfalkowski/nonnative/commit/158aabfe517650a497f194ba607b3d39967a317f) build(deps): bump bin from `4dda9b0` to `bf35764` (#623)
|
26
|
+
- [`57a6c9e`](https://github.com/alexfalkowski/nonnative/commit/57a6c9e8a475a9ac96fd15a7f92a2c01c5ffc2c9) build(ci): use latest published images (#622)
|
27
|
+
- [`e9ad997`](https://github.com/alexfalkowski/nonnative/commit/e9ad997c681013d8f4cd467a280768f0faeed77e) build(ci): use latest published images (#621)
|
28
|
+
- [`4ecc0ae`](https://github.com/alexfalkowski/nonnative/commit/4ecc0aefe9874cc927dc3d820365fc746856ac01) test(deps): bump grpc from 1.74.0 to 1.74.1 (#620)
|
29
|
+
- [`e98ab4d`](https://github.com/alexfalkowski/nonnative/commit/e98ab4dc2dea669811b6439593cb08bcfb04a8ef) test(deps): bump rubocop from 1.79.1 to 1.79.2 (#619)
|
30
|
+
- [`2a83fcc`](https://github.com/alexfalkowski/nonnative/commit/2a83fcc356d58e3953e2c59337e33101e7e646fe) build(deps): bump bin from `fe4b684` to `22b4d36` (#617)
|
31
|
+
- [`25d1837`](https://github.com/alexfalkowski/nonnative/commit/25d1837d287352f55a4420c6383a42049b1db29c) build(ci): use latest published images (#618)
|
32
|
+
- [`7b311d9`](https://github.com/alexfalkowski/nonnative/commit/7b311d9ab557c9471d320f1cc4e6791bab6461ae) test(deps): bump rubocop from 1.79.0 to 1.79.1 (#615)
|
33
|
+
- [`9eb4b6f`](https://github.com/alexfalkowski/nonnative/commit/9eb4b6f25ee4628e4895343d66eafc175a5b2144) test(deps): bump puma from 6.6.0 to 6.6.1 (#616)
|
34
|
+
- [`f9a3b97`](https://github.com/alexfalkowski/nonnative/commit/f9a3b976ec1228ec04628c6faeb9518f95cd2d05) build(ci): update submodule (#614)
|
35
|
+
- [`a64f0de`](https://github.com/alexfalkowski/nonnative/commit/a64f0de60dfec3ec1efc10817d244c21fbffc57a) build(deps): bump bin from `911aa21` to `30d8508` (#613)
|
36
|
+
- [`4429f53`](https://github.com/alexfalkowski/nonnative/commit/4429f5359463f6f28f4a50945daeb74df2565cc5) build(ci): use latest published images (#612)
|
37
|
+
- [`1833c29`](https://github.com/alexfalkowski/nonnative/commit/1833c29797d5159370c97406b8dc7350c7d7ab39) build(ci): use latest published images (#611)
|
38
|
+
- [`cb07587`](https://github.com/alexfalkowski/nonnative/commit/cb07587e64052f30bd24727272e3f3b9762e0919) test(deps): bump rubocop from 1.78.0 to 1.79.0 (#609)
|
39
|
+
- [`02b2a9e`](https://github.com/alexfalkowski/nonnative/commit/02b2a9eea77e7cbfc60d55397e350dcaa3afb3eb) test(deps): bump grpc from 1.73.0 to 1.74.0 (#610)
|
40
|
+
- [`085cfc9`](https://github.com/alexfalkowski/nonnative/commit/085cfc96959b6a8d98c51bf502a97f79d5c79e6f) test(deps): bump ruby-lsp from 0.26.0 to 0.26.1 (#608)
|
41
|
+
- [`0b3400f`](https://github.com/alexfalkowski/nonnative/commit/0b3400f6ef8bce5c84ff8a1acbf8c48cc76ebce9) test(deps): udate with make update-all-dep (#607)
|
42
|
+
- [`44209fc`](https://github.com/alexfalkowski/nonnative/commit/44209fc01539c317f068315022d1311fce7907e8) build(deps): bump bin from `f024fdf` to `911aa21` (#606)
|
43
|
+
- [`abc42a4`](https://github.com/alexfalkowski/nonnative/commit/abc42a449ce87ea7e1063a4ef3246cc2487e7c6e) build(deps): bump bin from `a13f4bb` to `f024fdf` (#605)
|
44
|
+
- [`3ecb4a9`](https://github.com/alexfalkowski/nonnative/commit/3ecb4a9e32c0ffb193af9f229f7551c2b4850902) test(deps): bump ruby-lsp from 0.25.0 to 0.26.0 (#604)
|
45
|
+
- [`969f2ef`](https://github.com/alexfalkowski/nonnative/commit/969f2ef21e359702e3a793d47a1411ffa20022f1) build(ci): use alexfalkowski/ruby:1.43 (#603)
|
46
|
+
- [`a1b7442`](https://github.com/alexfalkowski/nonnative/commit/a1b744213c0ee0b0c04554d7d9ce8136a5e23884) build(deps): bump bin from `6df8f09` to `a13f4bb` (#602)
|
47
|
+
- [`6d796f0`](https://github.com/alexfalkowski/nonnative/commit/6d796f0ef1f057e8c39f17656d915a4c9ef9874f) test(deps): bump config from 5.5.2 to 5.6.1 (#601)
|
48
|
+
- [`82cabe3`](https://github.com/alexfalkowski/nonnative/commit/82cabe39e4bae7d9edd5b3123604c65bf3348eb4) build(deps): bump bin from `07bcffa` to `6df8f09` (#600)
|
49
|
+
- [`e77a1e1`](https://github.com/alexfalkowski/nonnative/commit/e77a1e1ce9f365302a9ce0ec7391d8cde17140eb) test(deps): bump simplecov-cobertura from 2.1.0 to 3.0.0 (#599)
|
50
|
+
- [`dfb1ce9`](https://github.com/alexfalkowski/nonnative/commit/dfb1ce96377f957efe3007b91c22b27288ef4592) build(deps): bump bin from `ce6b0e8` to `07bcffa` (#598)
|
51
|
+
- [`9ba3afd`](https://github.com/alexfalkowski/nonnative/commit/9ba3afd57ecd1aad43590af7f7c23d9b6239b38b) test(deps): bump ruby-lsp from 0.24.2 to 0.25.0 (#597)
|
52
|
+
- [`aa984a7`](https://github.com/alexfalkowski/nonnative/commit/aa984a73999648f03ee7b0f890d0a2733f31cf44) test(deps): bump rubocop from 1.77.0 to 1.78.0 (#596)
|
53
|
+
- [`713c66e`](https://github.com/alexfalkowski/nonnative/commit/713c66e49e6a394079e03d4fa1360d262efcb20a) build(deps): bump bin from `c9044eb` to `ce6b0e8` (#595)
|
54
|
+
- [`181c0de`](https://github.com/alexfalkowski/nonnative/commit/181c0deab7895b4c18336655a3b9437f934ac1bd) build(ci): use alexfalkowski/ruby:1.40 (#594)
|
55
|
+
- [`a2042e9`](https://github.com/alexfalkowski/nonnative/commit/a2042e9b5081de1af3711ee2d50c64eb07d2d178) test(deps): bump rspec-wait from 1.0.1 to 1.0.2 (#593)
|
56
|
+
- [`056a522`](https://github.com/alexfalkowski/nonnative/commit/056a522bd9e35353942267df64fcb22866d57f7d) test(deps): bump rubocop from 1.76.2 to 1.77.0 (#592)
|
57
|
+
- [`fe6ec30`](https://github.com/alexfalkowski/nonnative/commit/fe6ec30e9d87b0aec21fab8cdadba4a036534dc2) test(deps): bump ruby-lsp from 0.24.1 to 0.24.2 (#591)
|
58
|
+
- [`1b94fa1`](https://github.com/alexfalkowski/nonnative/commit/1b94fa1f22ecbba28d5a611d6f1415e160d62ac4) build(ci): use alexfalkowski/ruby:1.36 (#590)
|
59
|
+
|
9
60
|
## [v1.106.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.106.0) - 2025-06-18
|
10
61
|
|
11
62
|
- [`c72e047`](https://github.com/alexfalkowski/nonnative/commit/c72e0470a5fdcf2a3cb8c52a7c8f62b0f2b22ec2) feat(deps): update rubocop (1.76.2) (#589)
|
data/Gemfile.lock
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
nonnative (1.
|
4
|
+
nonnative (1.107.0)
|
5
5
|
concurrent-ruby (>= 1, < 2)
|
6
6
|
config (>= 5, < 6)
|
7
7
|
cucumber (>= 7, < 11)
|
8
8
|
get_process_mem (>= 1, < 2)
|
9
9
|
grpc (>= 1, < 2)
|
10
|
-
puma (>=
|
10
|
+
puma (>= 7, < 8)
|
11
11
|
rest-client (>= 2, < 3)
|
12
12
|
retriable (>= 3, < 4)
|
13
13
|
rspec-benchmark (>= 0, < 1)
|
@@ -23,13 +23,13 @@ GEM
|
|
23
23
|
benchmark-malloc (0.2.0)
|
24
24
|
benchmark-perf (0.6.0)
|
25
25
|
benchmark-trend (0.4.0)
|
26
|
-
bigdecimal (3.2.
|
26
|
+
bigdecimal (3.2.3)
|
27
27
|
builder (3.3.0)
|
28
28
|
concurrent-ruby (1.3.5)
|
29
|
-
config (5.
|
29
|
+
config (5.6.1)
|
30
30
|
deep_merge (~> 1.2, >= 1.2.1)
|
31
31
|
ostruct
|
32
|
-
cucumber (10.
|
32
|
+
cucumber (10.1.0)
|
33
33
|
base64 (~> 0.2)
|
34
34
|
builder (~> 3.2)
|
35
35
|
cucumber-ci-environment (> 9, < 11)
|
@@ -42,15 +42,15 @@ GEM
|
|
42
42
|
multi_test (~> 1.1)
|
43
43
|
sys-uname (~> 1.3)
|
44
44
|
cucumber-ci-environment (10.0.1)
|
45
|
-
cucumber-core (15.1
|
46
|
-
cucumber-gherkin (> 27, <
|
47
|
-
cucumber-messages (> 26, <
|
45
|
+
cucumber-core (15.2.1)
|
46
|
+
cucumber-gherkin (> 27, < 33)
|
47
|
+
cucumber-messages (> 26, < 30)
|
48
48
|
cucumber-tag-expressions (> 5, < 7)
|
49
49
|
cucumber-cucumber-expressions (18.0.1)
|
50
50
|
bigdecimal
|
51
|
-
cucumber-gherkin (
|
51
|
+
cucumber-gherkin (32.2.0)
|
52
52
|
cucumber-messages (> 25, < 28)
|
53
|
-
cucumber-html-formatter (21.
|
53
|
+
cucumber-html-formatter (21.14.0)
|
54
54
|
cucumber-messages (> 19, < 28)
|
55
55
|
cucumber-messages (27.2.0)
|
56
56
|
cucumber-tag-expressions (6.1.2)
|
@@ -63,47 +63,48 @@ GEM
|
|
63
63
|
get_process_mem (1.0.0)
|
64
64
|
bigdecimal (>= 2.0)
|
65
65
|
ffi (~> 1.0)
|
66
|
-
google-protobuf (4.
|
66
|
+
google-protobuf (4.32.0-x86_64-darwin)
|
67
67
|
bigdecimal
|
68
68
|
rake (>= 13)
|
69
|
-
google-protobuf (4.
|
69
|
+
google-protobuf (4.32.0-x86_64-linux-gnu)
|
70
70
|
bigdecimal
|
71
71
|
rake (>= 13)
|
72
|
-
googleapis-common-protos-types (1.
|
73
|
-
google-protobuf (
|
74
|
-
grpc (1.
|
72
|
+
googleapis-common-protos-types (1.21.0)
|
73
|
+
google-protobuf (~> 4.26)
|
74
|
+
grpc (1.74.1-x86_64-darwin)
|
75
75
|
google-protobuf (>= 3.25, < 5.0)
|
76
76
|
googleapis-common-protos-types (~> 1.0)
|
77
|
-
grpc (1.
|
77
|
+
grpc (1.74.1-x86_64-linux-gnu)
|
78
78
|
google-protobuf (>= 3.25, < 5.0)
|
79
79
|
googleapis-common-protos-types (~> 1.0)
|
80
80
|
http-accept (1.7.0)
|
81
81
|
http-cookie (1.0.8)
|
82
82
|
domain_name (~> 0.5)
|
83
|
-
json (2.
|
83
|
+
json (2.13.2)
|
84
84
|
language_server-protocol (3.17.0.5)
|
85
85
|
lint_roller (1.1.0)
|
86
86
|
logger (1.7.0)
|
87
|
+
memoist3 (1.0.0)
|
87
88
|
mime-types (3.7.0)
|
88
89
|
logger
|
89
90
|
mime-types-data (~> 3.2025, >= 3.2025.0507)
|
90
|
-
mime-types-data (3.2025.
|
91
|
+
mime-types-data (3.2025.0902)
|
91
92
|
mini_mime (1.1.5)
|
92
93
|
multi_test (1.1.0)
|
93
|
-
mustermann (3.0.
|
94
|
+
mustermann (3.0.4)
|
94
95
|
ruby2_keywords (~> 0.0.1)
|
95
96
|
netrc (0.11.0)
|
96
97
|
nio4r (2.7.4)
|
97
|
-
ostruct (0.6.
|
98
|
+
ostruct (0.6.3)
|
98
99
|
parallel (1.27.0)
|
99
|
-
parser (3.3.
|
100
|
+
parser (3.3.9.0)
|
100
101
|
ast (~> 2.4.1)
|
101
102
|
racc
|
102
103
|
prism (1.4.0)
|
103
|
-
puma (
|
104
|
+
puma (7.0.0)
|
104
105
|
nio4r (~> 2.0)
|
105
106
|
racc (1.8.1)
|
106
|
-
rack (3.1
|
107
|
+
rack (3.2.1)
|
107
108
|
rack-protection (4.1.1)
|
108
109
|
base64 (>= 0.1.0)
|
109
110
|
logger (>= 1.6.0)
|
@@ -115,14 +116,14 @@ GEM
|
|
115
116
|
rake (13.3.0)
|
116
117
|
rbs (3.9.4)
|
117
118
|
logger
|
118
|
-
regexp_parser (2.
|
119
|
+
regexp_parser (2.11.2)
|
119
120
|
rest-client (2.1.0)
|
120
121
|
http-accept (>= 1.7.0, < 2.0)
|
121
122
|
http-cookie (>= 1.0.2, < 2.0)
|
122
123
|
mime-types (>= 1.16, < 4.0)
|
123
124
|
netrc (~> 0.8)
|
124
125
|
retriable (3.1.2)
|
125
|
-
rexml (3.4.
|
126
|
+
rexml (3.4.2)
|
126
127
|
rspec (3.13.1)
|
127
128
|
rspec-core (~> 3.13.0)
|
128
129
|
rspec-expectations (~> 3.13.0)
|
@@ -132,7 +133,7 @@ GEM
|
|
132
133
|
benchmark-perf (~> 0.6)
|
133
134
|
benchmark-trend (~> 0.4)
|
134
135
|
rspec (>= 3.0)
|
135
|
-
rspec-core (3.13.
|
136
|
+
rspec-core (3.13.5)
|
136
137
|
rspec-support (~> 3.13.0)
|
137
138
|
rspec-expectations (3.13.5)
|
138
139
|
diff-lcs (>= 1.2.0, < 2.0)
|
@@ -140,10 +141,10 @@ GEM
|
|
140
141
|
rspec-mocks (3.13.5)
|
141
142
|
diff-lcs (>= 1.2.0, < 2.0)
|
142
143
|
rspec-support (~> 3.13.0)
|
143
|
-
rspec-support (3.13.
|
144
|
-
rspec-wait (1.0.
|
144
|
+
rspec-support (3.13.5)
|
145
|
+
rspec-wait (1.0.2)
|
145
146
|
rspec (>= 3.4)
|
146
|
-
rubocop (1.
|
147
|
+
rubocop (1.80.2)
|
147
148
|
json (~> 2.3)
|
148
149
|
language_server-protocol (~> 3.17.0.2)
|
149
150
|
lint_roller (~> 1.1.0)
|
@@ -151,27 +152,26 @@ GEM
|
|
151
152
|
parser (>= 3.3.0.2)
|
152
153
|
rainbow (>= 2.2.2, < 4.0)
|
153
154
|
regexp_parser (>= 2.9.3, < 3.0)
|
154
|
-
rubocop-ast (>= 1.
|
155
|
+
rubocop-ast (>= 1.46.0, < 2.0)
|
155
156
|
ruby-progressbar (~> 1.7)
|
156
157
|
unicode-display_width (>= 2.4.0, < 4.0)
|
157
|
-
rubocop-ast (1.
|
158
|
+
rubocop-ast (1.46.0)
|
158
159
|
parser (>= 3.3.7.2)
|
159
160
|
prism (~> 1.4)
|
160
|
-
ruby-lsp (0.
|
161
|
+
ruby-lsp (0.26.1)
|
161
162
|
language_server-protocol (~> 3.17.0)
|
162
163
|
prism (>= 1.2, < 2.0)
|
163
164
|
rbs (>= 3, < 5)
|
164
|
-
sorbet-runtime (>= 0.5.10782)
|
165
165
|
ruby-progressbar (1.13.0)
|
166
166
|
ruby2_keywords (0.0.5)
|
167
167
|
simplecov (0.22.0)
|
168
168
|
docile (~> 1.1)
|
169
169
|
simplecov-html (~> 0.11)
|
170
170
|
simplecov_json_formatter (~> 0.1)
|
171
|
-
simplecov-cobertura (
|
171
|
+
simplecov-cobertura (3.1.0)
|
172
172
|
rexml
|
173
173
|
simplecov (~> 0.19)
|
174
|
-
simplecov-html (0.13.
|
174
|
+
simplecov-html (0.13.2)
|
175
175
|
simplecov_json_formatter (0.1.4)
|
176
176
|
sinatra (4.1.1)
|
177
177
|
logger (>= 1.6.0)
|
@@ -180,11 +180,11 @@ GEM
|
|
180
180
|
rack-protection (= 4.1.1)
|
181
181
|
rack-session (>= 2.0.0, < 3)
|
182
182
|
tilt (~> 2.0)
|
183
|
-
|
184
|
-
sys-uname (1.3.1)
|
183
|
+
sys-uname (1.4.1)
|
185
184
|
ffi (~> 1.1)
|
186
|
-
|
187
|
-
|
185
|
+
memoist3 (~> 1.0.0)
|
186
|
+
tilt (2.6.1)
|
187
|
+
unicode-display_width (3.1.5)
|
188
188
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
189
189
|
unicode-emoji (4.0.4)
|
190
190
|
|
data/lib/nonnative/version.rb
CHANGED
data/nonnative.gemspec
CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.add_dependency 'cucumber', '>= 7', '< 11'
|
30
30
|
spec.add_dependency 'get_process_mem', '>= 1', '< 2'
|
31
31
|
spec.add_dependency 'grpc', '>= 1', '< 2'
|
32
|
-
spec.add_dependency 'puma', '>=
|
32
|
+
spec.add_dependency 'puma', '>= 7', '< 8'
|
33
33
|
spec.add_dependency 'rest-client', '>= 2', '< 3'
|
34
34
|
spec.add_dependency 'retriable', '>= 3', '< 4'
|
35
35
|
spec.add_dependency 'rspec-benchmark', '>= 0', '< 1'
|
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.107.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alejandro Falkowski
|
@@ -115,20 +115,20 @@ dependencies:
|
|
115
115
|
requirements:
|
116
116
|
- - ">="
|
117
117
|
- !ruby/object:Gem::Version
|
118
|
-
version: '
|
118
|
+
version: '7'
|
119
119
|
- - "<"
|
120
120
|
- !ruby/object:Gem::Version
|
121
|
-
version: '
|
121
|
+
version: '8'
|
122
122
|
type: :runtime
|
123
123
|
prerelease: false
|
124
124
|
version_requirements: !ruby/object:Gem::Requirement
|
125
125
|
requirements:
|
126
126
|
- - ">="
|
127
127
|
- !ruby/object:Gem::Version
|
128
|
-
version: '
|
128
|
+
version: '7'
|
129
129
|
- - "<"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: '
|
131
|
+
version: '8'
|
132
132
|
- !ruby/object:Gem::Dependency
|
133
133
|
name: rest-client
|
134
134
|
requirement: !ruby/object:Gem::Requirement
|