nonnative 1.84.0 → 1.84.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a54190af331c4410928da35c7fed461a281029037585183b0ce36a1a113172b
4
- data.tar.gz: 2835a5ebc4c5ec94027398c5e896b0c4c1490ae0b1187771dc91268ddff47b60
3
+ metadata.gz: ff480fe0c80d2f8aea2767d81dc0d64a5467875ee4c7aae41e29db61d8297bb4
4
+ data.tar.gz: fb5c830a040acd4531f5106e51afce5b5b15d6b608a1dbb41fce4239983651d1
5
5
  SHA512:
6
- metadata.gz: c50ea9468db90a56b0cceba79d71b7adcb0234c0ac5d9fc93b1849743f7db9e90ea663e279888cc001a3a740bb47ca4db0a373bcd0f8c125df3f5a1207a20eda
7
- data.tar.gz: e4ee6103689a6b8c19124e411b58226c4556c1c86175d37ca7325c262bb27629274988abb490def987731b05d7c81ceb2043163ea4aeb01f2c7dc4df373706b4
6
+ metadata.gz: 4608d44faf23a3f00adc43b91343e1a002bd06af4d8ef7609ebfff34652e2bdbe8ee999fb987c1c52ed0ad4c631045d04ebd40130ea19f88196c5e447ea7549f
7
+ data.tar.gz: c8b62a28660022f0f5bc40d6e28223c0b64231798c1c1eea63979d9d69b39a0251045196d76ad185399d713ea0aea31aaf5c775ec5c41f6a2c0bc7dcc7d20f6e
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
 
7
7
  ## Unreleased
8
8
 
9
+ ## [v1.84.1](https://github.com/alexfalkowski/nonnative/releases/tag/v1.84.1) - 2024-12-17
10
+
11
+ - [`1fb44bd`](https://github.com/alexfalkowski/nonnative/commit/1fb44bdb781b6d5d9f88e3d6565eca848aad189e) fix(config): make sure we set properties (#467)
12
+
9
13
  ## [v1.84.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.84.0) - 2024-12-17
10
14
 
11
15
  - [`14daed4`](https://github.com/alexfalkowski/nonnative/commit/14daed43ab1d64baa32d004d875409784813590c) feat(cucumber): add ability to control faults (#466)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nonnative (1.84.0)
4
+ nonnative (1.84.1)
5
5
  concurrent-ruby (>= 1, < 2)
6
6
  config (>= 5, < 6)
7
7
  cucumber (>= 7, < 10)
data/README.md CHANGED
@@ -92,7 +92,7 @@ end
92
92
  Setup it up through configuration:
93
93
 
94
94
  ```yaml
95
- version: 1.0
95
+ version: "1.0"
96
96
  url: http://localhost:4567
97
97
  processes:
98
98
  -
@@ -187,7 +187,7 @@ end
187
187
  Setup it up through configuration:
188
188
 
189
189
  ```yaml
190
- version: 1.0
190
+ version: "1.0"
191
191
  url: http://localhost:4567
192
192
  servers:
193
193
  -
@@ -262,7 +262,7 @@ end
262
262
  Setup it up through configuration:
263
263
 
264
264
  ```yaml
265
- version: 1.0
265
+ version: "1.0"
266
266
  url: http://localhost:4567
267
267
  servers:
268
268
  -
@@ -327,7 +327,7 @@ end
327
327
  Setup it up through configuration:
328
328
 
329
329
  ```yaml
330
- version: 1.0
330
+ version: "1.0"
331
331
  url: http://localhost:4567
332
332
  servers:
333
333
  -
@@ -376,7 +376,7 @@ end
376
376
  Setup it up through configuration:
377
377
 
378
378
  ```yaml
379
- version: 1.0
379
+ version: "1.0"
380
380
  processes:
381
381
  -
382
382
  name: postgres
@@ -429,7 +429,7 @@ end
429
429
  Setup it up through configuration:
430
430
 
431
431
  ```yaml
432
- version: 1.0
432
+ version: "1.0"
433
433
  url: http://localhost:4567
434
434
  processes:
435
435
  -
@@ -468,7 +468,7 @@ end
468
468
  Setup it up through configuration:
469
469
 
470
470
  ```yaml
471
- version: 1.0
471
+ version: "1.0"
472
472
  url: http://localhost:4567
473
473
  servers:
474
474
  -
@@ -507,7 +507,7 @@ end
507
507
  Setup it up through configuration:
508
508
 
509
509
  ```yaml
510
- version: 1.0
510
+ version: "1.0"
511
511
  url: http://localhost:4567
512
512
  services:
513
513
  -
@@ -618,7 +618,7 @@ Nonnative.go_executable(tools, 'reports', 'your_binary', 'sub_command', '--confi
618
618
  Setup it up through configuration:
619
619
 
620
620
  ```yaml
621
- version: 1.0
621
+ version: "1.0"
622
622
  url: http://localhost:4567
623
623
  processes:
624
624
  -
@@ -13,6 +13,9 @@ module Nonnative
13
13
  def load_file(path)
14
14
  cfg = Nonnative.configurations(path)
15
15
 
16
+ self.version = cfg.version
17
+ self.url = cfg.url
18
+
16
19
  add_processes(cfg)
17
20
  add_servers(cfg)
18
21
  add_services(cfg)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nonnative
4
- VERSION = '1.84.0'
4
+ VERSION = '1.84.1'
5
5
  end
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.84.0
4
+ version: 1.84.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Falkowski