nonnative 1.57.0 → 1.57.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/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/lib/nonnative/configuration.rb +2 -2
- data/lib/nonnative/process.rb +1 -1
- data/lib/nonnative/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18c507d1d80df16859377563fe1d6ee1c9eb5f2ddd8fdf3d2993f51b6bdb2b62
|
|
4
|
+
data.tar.gz: d68f4c11e44caa4603bf1c6d710b84dfcc7736b651d1386908b5bd68ed92faf9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1bbef60259712ff852c2fccf0000fd03744bda978f4e31ee0a5c462a09d1ff523af7ec2aaabba6decd5ef24bec8c26b7d3e415ab3506cb7de06889ace9257ff
|
|
7
|
+
data.tar.gz: ed09e907cf065b93f4b320830ff9eafeebac36b0341c40e335500e76868148bfaead29291b26312cf7f7d7fa1130a73b762ac2ace354d90851e9c62f93e5f994
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.57.1](https://github.com/alexfalkowski/nonnative/compare/v1.57.0...v1.57.1) (2022-03-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **command:** make sure we recreate with every execution ([#113](https://github.com/alexfalkowski/nonnative/issues/113)) ([efe2c76](https://github.com/alexfalkowski/nonnative/commit/efe2c761a54eacfa2e4afe99afea2a9c2f8eeb74))
|
|
11
|
+
|
|
5
12
|
## [1.57.0](https://github.com/alexfalkowski/nonnative/compare/v1.56.1...v1.57.0) (2022-03-28)
|
|
6
13
|
|
|
7
14
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -65,7 +65,7 @@ Nonnative.configure do |config|
|
|
|
65
65
|
|
|
66
66
|
config.process do |p|
|
|
67
67
|
p.name = 'start_1'
|
|
68
|
-
p.command = 'features/support/bin/start 12_321'
|
|
68
|
+
p.command = -> { 'features/support/bin/start 12_321' }
|
|
69
69
|
p.timeout = config.strategy.timeout
|
|
70
70
|
p.port = 12_321
|
|
71
71
|
p.log = 'features/logs/12_321.log'
|
|
@@ -77,7 +77,7 @@ Nonnative.configure do |config|
|
|
|
77
77
|
|
|
78
78
|
config.process do |p|
|
|
79
79
|
p.name = 'start_2'
|
|
80
|
-
p.command = 'features/support/bin/start 12_322'
|
|
80
|
+
p.command = -> { 'features/support/bin/start 12_322' }
|
|
81
81
|
p.timeout = 0.5
|
|
82
82
|
p.port = 12_322
|
|
83
83
|
p.log = 'features/logs/12_322.log'
|
|
@@ -70,9 +70,9 @@ module Nonnative
|
|
|
70
70
|
go = process['go']
|
|
71
71
|
if go
|
|
72
72
|
params = go['parameters'] || []
|
|
73
|
-
Nonnative.go_executable(go['output'], go['executable'], go['command'], *params)
|
|
73
|
+
-> { Nonnative.go_executable(go['output'], go['executable'], go['command'], *params) }
|
|
74
74
|
else
|
|
75
|
-
process['command']
|
|
75
|
+
-> { process['command'] }
|
|
76
76
|
end
|
|
77
77
|
end
|
|
78
78
|
|
data/lib/nonnative/process.rb
CHANGED
data/lib/nonnative/version.rb
CHANGED