nonnative 1.51.1 → 1.55.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/.ruby-version +1 -1
- data/CHANGELOG.md +38 -0
- data/Gemfile.lock +80 -78
- data/README.md +6 -0
- data/lib/nonnative/cucumber.rb +13 -4
- data/lib/nonnative/observability.rb +8 -0
- data/lib/nonnative/process.rb +6 -0
- data/lib/nonnative/version.rb +1 -1
- data/lib/nonnative.rb +1 -0
- data/nonnative.gemspec +5 -3
- metadata +25 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79bdca40e04cd36c05a4c55decc071e3b2b9eaedd6e86705137ed6ce3b4bfb17
|
|
4
|
+
data.tar.gz: 9b6e731b3b5e03a33d8741d02c25a2362d28a827b4b68b0ab6815456c9879fc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3be9c8ce41dc33c6d48a509d5949802ae93ad184d58280963b6dde931c596f7a2314be67a77d799c011834547d9a02ff93d99ab40a14ce773b01b8f2018604a8
|
|
7
|
+
data.tar.gz: af509161aae16e936e702da20baf7d86fc68f79802577eb9c01f3ef9d144e5b038378f0d835a8ab6902888590750475d8792dc61ec8f193c64e861e35c46c0c7
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby-3.0.
|
|
1
|
+
ruby-3.0.3
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,44 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.55.0](https://github.com/alexfalkowski/nonnative/compare/v1.54.4...v1.55.0) (2022-03-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **observability:** add liveness and readiness ([#108](https://github.com/alexfalkowski/nonnative/issues/108)) ([526f43c](https://github.com/alexfalkowski/nonnative/commit/526f43cf0a21876418233abca558d8611acd10c7))
|
|
11
|
+
|
|
12
|
+
### [1.54.4](https://github.com/alexfalkowski/nonnative/compare/v1.54.3...v1.54.4) (2022-03-20)
|
|
13
|
+
|
|
14
|
+
### [1.54.3](https://github.com/alexfalkowski/nonnative/compare/v1.54.2...v1.54.3) (2022-03-05)
|
|
15
|
+
|
|
16
|
+
### [1.54.2](https://github.com/alexfalkowski/nonnative/compare/v1.54.1...v1.54.2) (2022-03-04)
|
|
17
|
+
|
|
18
|
+
### [1.54.1](https://github.com/alexfalkowski/nonnative/compare/v1.54.0...v1.54.1) (2021-10-14)
|
|
19
|
+
|
|
20
|
+
## [1.54.0](https://github.com/alexfalkowski/nonnative/compare/v1.53.0...v1.54.0) (2021-10-11)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* only add less than for memory ([#99](https://github.com/alexfalkowski/nonnative/issues/99)) ([fed4929](https://github.com/alexfalkowski/nonnative/commit/fed4929a157982adcfbefac9a79f593289234418))
|
|
26
|
+
|
|
27
|
+
## [1.53.0](https://github.com/alexfalkowski/nonnative/compare/v1.52.0...v1.53.0) (2021-10-11)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* add ability to read process memory ([#98](https://github.com/alexfalkowski/nonnative/issues/98)) ([2139932](https://github.com/alexfalkowski/nonnative/commit/21399326bd342711a2cc98ab941cc3b8aaea6d56))
|
|
33
|
+
|
|
34
|
+
## [1.52.0](https://github.com/alexfalkowski/nonnative/compare/v1.51.2...v1.52.0) (2021-09-21)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Features
|
|
38
|
+
|
|
39
|
+
* update ruby ([#96](https://github.com/alexfalkowski/nonnative/issues/96)) ([accdbb3](https://github.com/alexfalkowski/nonnative/commit/accdbb3e9837e2c25bedf966a84c52df4d65d2b7))
|
|
40
|
+
|
|
41
|
+
### [1.51.2](https://github.com/alexfalkowski/nonnative/compare/v1.51.1...v1.51.2) (2021-08-16)
|
|
42
|
+
|
|
5
43
|
### [1.51.1](https://github.com/alexfalkowski/nonnative/compare/v1.51.0...v1.51.1) (2021-07-20)
|
|
6
44
|
|
|
7
45
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
nonnative (1.
|
|
4
|
+
nonnative (1.55.0)
|
|
5
5
|
concurrent-ruby (~> 1.0, >= 1.0.5)
|
|
6
6
|
cucumber (>= 7, < 8)
|
|
7
|
+
get_process_mem (~> 0.2.1)
|
|
7
8
|
grpc (>= 1, < 2)
|
|
8
9
|
grpc-tools (>= 1, < 2)
|
|
9
10
|
puma (~> 5.0)
|
|
@@ -17,131 +18,130 @@ GEM
|
|
|
17
18
|
specs:
|
|
18
19
|
ast (2.4.2)
|
|
19
20
|
backport (1.2.0)
|
|
20
|
-
benchmark (0.
|
|
21
|
+
benchmark (0.2.0)
|
|
21
22
|
benchmark-malloc (0.2.0)
|
|
22
23
|
benchmark-perf (0.6.0)
|
|
23
24
|
benchmark-trend (0.4.0)
|
|
24
25
|
builder (3.2.4)
|
|
25
|
-
concurrent-ruby (1.1.
|
|
26
|
+
concurrent-ruby (1.1.10)
|
|
26
27
|
coveralls (0.8.23)
|
|
27
28
|
json (>= 1.8, < 3)
|
|
28
29
|
simplecov (~> 0.16.1)
|
|
29
30
|
term-ansicolor (~> 1.3)
|
|
30
31
|
thor (>= 0.19.4, < 2.0)
|
|
31
32
|
tins (~> 1.6)
|
|
32
|
-
cucumber (7.
|
|
33
|
+
cucumber (7.1.0)
|
|
33
34
|
builder (~> 3.2, >= 3.2.4)
|
|
34
|
-
cucumber-core (~> 10.
|
|
35
|
+
cucumber-core (~> 10.1, >= 10.1.0)
|
|
35
36
|
cucumber-create-meta (~> 6.0, >= 6.0.1)
|
|
36
|
-
cucumber-cucumber-expressions (~>
|
|
37
|
-
cucumber-gherkin (~>
|
|
38
|
-
cucumber-html-formatter (~>
|
|
39
|
-
cucumber-messages (~> 17.
|
|
40
|
-
cucumber-wire (~> 6.
|
|
37
|
+
cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
|
|
38
|
+
cucumber-gherkin (~> 22.0, >= 22.0.0)
|
|
39
|
+
cucumber-html-formatter (~> 17.0, >= 17.0.0)
|
|
40
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
|
41
|
+
cucumber-wire (~> 6.2, >= 6.2.0)
|
|
41
42
|
diff-lcs (~> 1.4, >= 1.4.4)
|
|
42
43
|
mime-types (~> 3.3, >= 3.3.1)
|
|
43
44
|
multi_test (~> 0.1, >= 0.1.2)
|
|
44
45
|
sys-uname (~> 1.2, >= 1.2.2)
|
|
45
|
-
cucumber-core (10.
|
|
46
|
-
cucumber-gherkin (~>
|
|
47
|
-
cucumber-messages (~> 17.
|
|
48
|
-
cucumber-tag-expressions (~>
|
|
49
|
-
cucumber-create-meta (6.0.
|
|
50
|
-
cucumber-messages (~> 17.
|
|
46
|
+
cucumber-core (10.1.1)
|
|
47
|
+
cucumber-gherkin (~> 22.0, >= 22.0.0)
|
|
48
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
|
49
|
+
cucumber-tag-expressions (~> 4.1, >= 4.1.0)
|
|
50
|
+
cucumber-create-meta (6.0.4)
|
|
51
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
|
51
52
|
sys-uname (~> 1.2, >= 1.2.2)
|
|
52
|
-
cucumber-cucumber-expressions (
|
|
53
|
-
cucumber-gherkin (
|
|
54
|
-
cucumber-messages (~> 17.
|
|
55
|
-
cucumber-html-formatter (
|
|
56
|
-
cucumber-messages (~> 17.
|
|
57
|
-
cucumber-messages (17.
|
|
58
|
-
cucumber-tag-expressions (
|
|
59
|
-
cucumber-wire (6.
|
|
60
|
-
cucumber-core (~> 10.
|
|
61
|
-
cucumber-cucumber-expressions (~>
|
|
62
|
-
|
|
63
|
-
diff-lcs (1.4.4)
|
|
53
|
+
cucumber-cucumber-expressions (14.0.0)
|
|
54
|
+
cucumber-gherkin (22.0.0)
|
|
55
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
|
56
|
+
cucumber-html-formatter (17.0.0)
|
|
57
|
+
cucumber-messages (~> 17.1, >= 17.1.0)
|
|
58
|
+
cucumber-messages (17.1.1)
|
|
59
|
+
cucumber-tag-expressions (4.1.0)
|
|
60
|
+
cucumber-wire (6.2.1)
|
|
61
|
+
cucumber-core (~> 10.1, >= 10.1.0)
|
|
62
|
+
cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
|
|
63
|
+
diff-lcs (1.5.0)
|
|
64
64
|
docile (1.4.0)
|
|
65
65
|
domain_name (0.5.20190701)
|
|
66
66
|
unf (>= 0.0.5, < 1.0.0)
|
|
67
67
|
e2mmap (0.1.0)
|
|
68
|
-
ffi (1.15.
|
|
69
|
-
|
|
70
|
-
|
|
68
|
+
ffi (1.15.5)
|
|
69
|
+
get_process_mem (0.2.7)
|
|
70
|
+
ffi (~> 1.0)
|
|
71
|
+
google-protobuf (3.19.4-x86_64-darwin)
|
|
72
|
+
googleapis-common-protos-types (1.3.0)
|
|
71
73
|
google-protobuf (~> 3.14)
|
|
72
|
-
grpc (1.
|
|
73
|
-
google-protobuf (~> 3.
|
|
74
|
+
grpc (1.45.0-universal-darwin)
|
|
75
|
+
google-protobuf (~> 3.19)
|
|
74
76
|
googleapis-common-protos-types (~> 1.0)
|
|
75
|
-
grpc-tools (1.
|
|
77
|
+
grpc-tools (1.45.0)
|
|
76
78
|
http-accept (1.7.0)
|
|
77
79
|
http-cookie (1.0.4)
|
|
78
80
|
domain_name (~> 0.5)
|
|
79
81
|
jaro_winkler (1.5.4)
|
|
80
|
-
json (2.
|
|
82
|
+
json (2.6.1)
|
|
81
83
|
kramdown (2.3.1)
|
|
82
84
|
rexml
|
|
83
85
|
kramdown-parser-gfm (1.1.0)
|
|
84
86
|
kramdown (~> 2.0)
|
|
85
|
-
mime-types (3.
|
|
87
|
+
mime-types (3.4.1)
|
|
86
88
|
mime-types-data (~> 3.2015)
|
|
87
|
-
mime-types-data (3.
|
|
88
|
-
mini_portile2 (2.5.3)
|
|
89
|
+
mime-types-data (3.2022.0105)
|
|
89
90
|
multi_test (0.1.2)
|
|
90
91
|
mustermann (1.1.1)
|
|
91
92
|
ruby2_keywords (~> 0.0.1)
|
|
92
93
|
netrc (0.11.0)
|
|
93
|
-
nio4r (2.5.
|
|
94
|
-
nokogiri (1.
|
|
95
|
-
mini_portile2 (~> 2.5.0)
|
|
94
|
+
nio4r (2.5.8)
|
|
95
|
+
nokogiri (1.13.3-x86_64-darwin)
|
|
96
96
|
racc (~> 1.4)
|
|
97
|
-
parallel (1.
|
|
98
|
-
parser (3.
|
|
97
|
+
parallel (1.22.0)
|
|
98
|
+
parser (3.1.1.0)
|
|
99
99
|
ast (~> 2.4.1)
|
|
100
|
-
puma (5.
|
|
100
|
+
puma (5.6.2)
|
|
101
101
|
nio4r (~> 2.0)
|
|
102
|
-
racc (1.
|
|
102
|
+
racc (1.6.0)
|
|
103
103
|
rack (2.2.3)
|
|
104
|
-
rack-protection (2.
|
|
104
|
+
rack-protection (2.2.0)
|
|
105
105
|
rack
|
|
106
|
-
rainbow (3.
|
|
107
|
-
regexp_parser (2.
|
|
106
|
+
rainbow (3.1.1)
|
|
107
|
+
regexp_parser (2.2.1)
|
|
108
108
|
rest-client (2.1.0)
|
|
109
109
|
http-accept (>= 1.7.0, < 2.0)
|
|
110
110
|
http-cookie (>= 1.0.2, < 2.0)
|
|
111
111
|
mime-types (>= 1.16, < 4.0)
|
|
112
112
|
netrc (~> 0.8)
|
|
113
|
-
reverse_markdown (2.
|
|
113
|
+
reverse_markdown (2.1.1)
|
|
114
114
|
nokogiri
|
|
115
115
|
rexml (3.2.5)
|
|
116
|
-
rspec (3.
|
|
117
|
-
rspec-core (~> 3.
|
|
118
|
-
rspec-expectations (~> 3.
|
|
119
|
-
rspec-mocks (~> 3.
|
|
116
|
+
rspec (3.11.0)
|
|
117
|
+
rspec-core (~> 3.11.0)
|
|
118
|
+
rspec-expectations (~> 3.11.0)
|
|
119
|
+
rspec-mocks (~> 3.11.0)
|
|
120
120
|
rspec-benchmark (0.6.0)
|
|
121
121
|
benchmark-malloc (~> 0.2)
|
|
122
122
|
benchmark-perf (~> 0.6)
|
|
123
123
|
benchmark-trend (~> 0.4)
|
|
124
124
|
rspec (>= 3.0)
|
|
125
|
-
rspec-core (3.
|
|
126
|
-
rspec-support (~> 3.
|
|
127
|
-
rspec-expectations (3.
|
|
125
|
+
rspec-core (3.11.0)
|
|
126
|
+
rspec-support (~> 3.11.0)
|
|
127
|
+
rspec-expectations (3.11.0)
|
|
128
128
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
129
|
-
rspec-support (~> 3.
|
|
130
|
-
rspec-mocks (3.
|
|
129
|
+
rspec-support (~> 3.11.0)
|
|
130
|
+
rspec-mocks (3.11.0)
|
|
131
131
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
132
|
-
rspec-support (~> 3.
|
|
133
|
-
rspec-support (3.
|
|
134
|
-
rubocop (1.
|
|
132
|
+
rspec-support (~> 3.11.0)
|
|
133
|
+
rspec-support (3.11.0)
|
|
134
|
+
rubocop (1.26.1)
|
|
135
135
|
parallel (~> 1.10)
|
|
136
|
-
parser (>= 3.
|
|
136
|
+
parser (>= 3.1.0.0)
|
|
137
137
|
rainbow (>= 2.2.2, < 4.0)
|
|
138
138
|
regexp_parser (>= 1.8, < 3.0)
|
|
139
139
|
rexml
|
|
140
|
-
rubocop-ast (>= 1.
|
|
140
|
+
rubocop-ast (>= 1.16.0, < 2.0)
|
|
141
141
|
ruby-progressbar (~> 1.7)
|
|
142
142
|
unicode-display_width (>= 1.4.0, < 3.0)
|
|
143
|
-
rubocop-ast (1.
|
|
144
|
-
parser (>= 3.
|
|
143
|
+
rubocop-ast (1.16.0)
|
|
144
|
+
parser (>= 3.1.1.0)
|
|
145
145
|
ruby-progressbar (1.11.0)
|
|
146
146
|
ruby2_keywords (0.0.5)
|
|
147
147
|
simplecov (0.16.1)
|
|
@@ -149,12 +149,12 @@ GEM
|
|
|
149
149
|
json (>= 1.8, < 3)
|
|
150
150
|
simplecov-html (~> 0.10.0)
|
|
151
151
|
simplecov-html (0.10.2)
|
|
152
|
-
sinatra (2.
|
|
152
|
+
sinatra (2.2.0)
|
|
153
153
|
mustermann (~> 1.0)
|
|
154
154
|
rack (~> 2.2)
|
|
155
|
-
rack-protection (= 2.
|
|
155
|
+
rack-protection (= 2.2.0)
|
|
156
156
|
tilt (~> 2.0)
|
|
157
|
-
solargraph (0.
|
|
157
|
+
solargraph (0.44.3)
|
|
158
158
|
backport (~> 1.2)
|
|
159
159
|
benchmark
|
|
160
160
|
bundler (>= 1.17.2)
|
|
@@ -174,25 +174,27 @@ GEM
|
|
|
174
174
|
ffi (~> 1.1)
|
|
175
175
|
term-ansicolor (1.7.1)
|
|
176
176
|
tins (~> 1.0)
|
|
177
|
-
thor (1.1
|
|
177
|
+
thor (1.2.1)
|
|
178
178
|
tilt (2.0.10)
|
|
179
|
-
tins (1.
|
|
179
|
+
tins (1.31.0)
|
|
180
180
|
sync
|
|
181
181
|
unf (0.1.4)
|
|
182
182
|
unf_ext
|
|
183
|
-
unf_ext (0.0.
|
|
184
|
-
unicode-display_width (2.
|
|
185
|
-
|
|
183
|
+
unf_ext (0.0.8.1)
|
|
184
|
+
unicode-display_width (2.1.0)
|
|
185
|
+
webrick (1.7.0)
|
|
186
|
+
yard (0.9.27)
|
|
187
|
+
webrick (~> 1.7.0)
|
|
186
188
|
|
|
187
189
|
PLATFORMS
|
|
188
|
-
|
|
190
|
+
x86_64-darwin-21
|
|
189
191
|
|
|
190
192
|
DEPENDENCIES
|
|
191
|
-
bundler (~> 2.
|
|
193
|
+
bundler (~> 2.3)
|
|
192
194
|
coveralls (~> 0.8.23)
|
|
193
195
|
nonnative!
|
|
194
|
-
rubocop (~> 1.
|
|
195
|
-
solargraph (~> 0.
|
|
196
|
+
rubocop (~> 1.26)
|
|
197
|
+
solargraph (~> 0.44.3)
|
|
196
198
|
|
|
197
199
|
BUNDLED WITH
|
|
198
|
-
2.
|
|
200
|
+
2.3.9
|
data/README.md
CHANGED
|
@@ -118,6 +118,12 @@ Nonnative.configure do |config|
|
|
|
118
118
|
end
|
|
119
119
|
```
|
|
120
120
|
|
|
121
|
+
With cucumber you can also verify how much memory is used by the process:
|
|
122
|
+
|
|
123
|
+
```cucumber
|
|
124
|
+
Then the process 'start_1' should consume less than '25mb' of memory
|
|
125
|
+
```
|
|
126
|
+
|
|
121
127
|
### Servers
|
|
122
128
|
|
|
123
129
|
A server is a dependency to some external API.
|
data/lib/nonnative/cucumber.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
Given('I set the proxy for process {string} to {string}') do |name, operation|
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
process = Nonnative.pool.process_by_name(name)
|
|
5
|
+
process.proxy.send(operation)
|
|
6
6
|
end
|
|
7
7
|
|
|
8
8
|
Given('I set the proxy for server {string} to {string}') do |name, operation|
|
|
@@ -16,8 +16,8 @@ Given('I set the proxy for service {string} to {string}') do |name, operation|
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
Then('I should reset the proxy for process {string}') do |name|
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
process = Nonnative.pool.process_by_name(name)
|
|
20
|
+
process.proxy.reset
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
Then('I should reset the proxy for server {string}') do |name|
|
|
@@ -29,3 +29,12 @@ Then('I should reset the proxy for service {string}') do |name|
|
|
|
29
29
|
service = Nonnative.pool.service_by_name(name)
|
|
30
30
|
service.proxy.reset
|
|
31
31
|
end
|
|
32
|
+
|
|
33
|
+
Then('the process {string} should consume less than {string} of memory') do |name, mem|
|
|
34
|
+
process = Nonnative.pool.process_by_name(name)
|
|
35
|
+
_, size, type = mem.split(/(\d+)/)
|
|
36
|
+
actual = process.memory.send(type)
|
|
37
|
+
size = size.to_i
|
|
38
|
+
|
|
39
|
+
expect(actual).to be < size
|
|
40
|
+
end
|
|
@@ -6,6 +6,14 @@ module Nonnative
|
|
|
6
6
|
get('health', { content_type: :json, accept: :json })
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
+
def liveness
|
|
10
|
+
get('liveness', { content_type: :json, accept: :json })
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def readiness
|
|
14
|
+
get('readiness', { content_type: :json, accept: :json })
|
|
15
|
+
end
|
|
16
|
+
|
|
9
17
|
def metrics
|
|
10
18
|
get('metrics')
|
|
11
19
|
end
|
data/lib/nonnative/process.rb
CHANGED
data/lib/nonnative/version.rb
CHANGED
data/lib/nonnative.rb
CHANGED
data/nonnative.gemspec
CHANGED
|
@@ -22,9 +22,11 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
23
|
spec.require_paths = ['lib']
|
|
24
24
|
spec.required_ruby_version = ['>= 3.0.0', '< 4.0.0']
|
|
25
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
25
26
|
|
|
26
27
|
spec.add_dependency 'concurrent-ruby', '~> 1.0', '>= 1.0.5'
|
|
27
28
|
spec.add_dependency 'cucumber', ['>= 7', '< 8']
|
|
29
|
+
spec.add_dependency 'get_process_mem', '~> 0.2.1'
|
|
28
30
|
spec.add_dependency 'grpc', ['>= 1', '< 2']
|
|
29
31
|
spec.add_dependency 'grpc-tools', ['>= 1', '< 2']
|
|
30
32
|
spec.add_dependency 'puma', '~> 5.0'
|
|
@@ -33,8 +35,8 @@ Gem::Specification.new do |spec|
|
|
|
33
35
|
spec.add_dependency 'rspec-expectations', '~> 3.9', '>= 3.9.2'
|
|
34
36
|
spec.add_dependency 'sinatra', '~> 2.0', '>= 2.0.8.1'
|
|
35
37
|
|
|
36
|
-
spec.add_development_dependency 'bundler', '~> 2.
|
|
38
|
+
spec.add_development_dependency 'bundler', '~> 2.3'
|
|
37
39
|
spec.add_development_dependency 'coveralls', '~> 0.8.23'
|
|
38
|
-
spec.add_development_dependency 'rubocop', '~> 1.
|
|
39
|
-
spec.add_development_dependency 'solargraph', '~> 0.
|
|
40
|
+
spec.add_development_dependency 'rubocop', '~> 1.26'
|
|
41
|
+
spec.add_development_dependency 'solargraph', '~> 0.44.3'
|
|
40
42
|
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.
|
|
4
|
+
version: 1.55.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:
|
|
11
|
+
date: 2022-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|
|
@@ -50,6 +50,20 @@ dependencies:
|
|
|
50
50
|
- - "<"
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: '8'
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: get_process_mem
|
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: 0.2.1
|
|
60
|
+
type: :runtime
|
|
61
|
+
prerelease: false
|
|
62
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - "~>"
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: 0.2.1
|
|
53
67
|
- !ruby/object:Gem::Dependency
|
|
54
68
|
name: grpc
|
|
55
69
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -178,20 +192,14 @@ dependencies:
|
|
|
178
192
|
requirements:
|
|
179
193
|
- - "~>"
|
|
180
194
|
- !ruby/object:Gem::Version
|
|
181
|
-
version: '2.
|
|
182
|
-
- - ">="
|
|
183
|
-
- !ruby/object:Gem::Version
|
|
184
|
-
version: 2.2.17
|
|
195
|
+
version: '2.3'
|
|
185
196
|
type: :development
|
|
186
197
|
prerelease: false
|
|
187
198
|
version_requirements: !ruby/object:Gem::Requirement
|
|
188
199
|
requirements:
|
|
189
200
|
- - "~>"
|
|
190
201
|
- !ruby/object:Gem::Version
|
|
191
|
-
version: '2.
|
|
192
|
-
- - ">="
|
|
193
|
-
- !ruby/object:Gem::Version
|
|
194
|
-
version: 2.2.17
|
|
202
|
+
version: '2.3'
|
|
195
203
|
- !ruby/object:Gem::Dependency
|
|
196
204
|
name: coveralls
|
|
197
205
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -212,28 +220,28 @@ dependencies:
|
|
|
212
220
|
requirements:
|
|
213
221
|
- - "~>"
|
|
214
222
|
- !ruby/object:Gem::Version
|
|
215
|
-
version: '1.
|
|
223
|
+
version: '1.26'
|
|
216
224
|
type: :development
|
|
217
225
|
prerelease: false
|
|
218
226
|
version_requirements: !ruby/object:Gem::Requirement
|
|
219
227
|
requirements:
|
|
220
228
|
- - "~>"
|
|
221
229
|
- !ruby/object:Gem::Version
|
|
222
|
-
version: '1.
|
|
230
|
+
version: '1.26'
|
|
223
231
|
- !ruby/object:Gem::Dependency
|
|
224
232
|
name: solargraph
|
|
225
233
|
requirement: !ruby/object:Gem::Requirement
|
|
226
234
|
requirements:
|
|
227
235
|
- - "~>"
|
|
228
236
|
- !ruby/object:Gem::Version
|
|
229
|
-
version:
|
|
237
|
+
version: 0.44.3
|
|
230
238
|
type: :development
|
|
231
239
|
prerelease: false
|
|
232
240
|
version_requirements: !ruby/object:Gem::Requirement
|
|
233
241
|
requirements:
|
|
234
242
|
- - "~>"
|
|
235
243
|
- !ruby/object:Gem::Version
|
|
236
|
-
version:
|
|
244
|
+
version: 0.44.3
|
|
237
245
|
description: Allows you to keep using the power of ruby to test other systems
|
|
238
246
|
email:
|
|
239
247
|
- alexrfalkowski@gmail.com
|
|
@@ -298,7 +306,8 @@ files:
|
|
|
298
306
|
homepage: https://github.com/alexfalkowski/nonnative
|
|
299
307
|
licenses:
|
|
300
308
|
- Unlicense
|
|
301
|
-
metadata:
|
|
309
|
+
metadata:
|
|
310
|
+
rubygems_mfa_required: 'true'
|
|
302
311
|
post_install_message:
|
|
303
312
|
rdoc_options: []
|
|
304
313
|
require_paths:
|
|
@@ -317,7 +326,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
317
326
|
- !ruby/object:Gem::Version
|
|
318
327
|
version: '0'
|
|
319
328
|
requirements: []
|
|
320
|
-
rubygems_version: 3.2.
|
|
329
|
+
rubygems_version: 3.2.32
|
|
321
330
|
signing_key:
|
|
322
331
|
specification_version: 4
|
|
323
332
|
summary: Allows you to keep using the power of ruby to test other systems
|