nonnative 1.59.0 → 1.59.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: 4b9753ee7672c1f7c2b0568af40a3d1953edffcc6e897d380e646d13dfd74b3b
4
- data.tar.gz: c679b34d22b5cb385405f389408cc3b0d2c4efd4ff163fbe6627366c61d082b8
3
+ metadata.gz: 8a2c4751f90acdfd5c610819ec3c6400c06ef5565a21a57de76ca934e0ae4c4c
4
+ data.tar.gz: 0543d81897672535887ded26db0631b03868ee465dfe0a1361795da890223f12
5
5
  SHA512:
6
- metadata.gz: 4a9bd84919b5e1129e0a0511c53aad69abd9ce907189e1f23079fb7affa551470da302a1a69305a0aa3b0e23cc5c31845baf7be9ead94bc3da8fb97381a25816
7
- data.tar.gz: f235c01883c19d56a5c327919988ed1710f0e6c5761c48fc1da9cc56d26200a5bc1a91a68bb2d8b08d28ee903a4f5df72da2ad6ba772cafce85c0695c0304ee7
6
+ metadata.gz: 92d476f0b27e5524b7698846b25b7cd4dd761582784dc53124093bb0c6bff31f8dec73869685a43e77de00d826204fe55d7bcd0644b83a5bbdae27a9add43e36
7
+ data.tar.gz: b2bbaa52ee9e45e36c5903f5989ab1100c3f4c23a49e344f2fa287bc870e98d206c956d94c5af75be7136880b1a50294846dba314e081bf6562cef1ccc999c0d
data/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
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.59.1](https://github.com/alexfalkowski/nonnative/compare/v1.59.0...v1.59.1) (2022-04-25)
6
+
5
7
  ## [1.59.0](https://github.com/alexfalkowski/nonnative/compare/v1.58.2...v1.59.0) (2022-04-25)
6
8
 
7
9
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nonnative (1.59.0)
4
+ nonnative (1.59.1)
5
5
  concurrent-ruby (~> 1.0, >= 1.0.5)
6
6
  cucumber (>= 7, < 8)
7
7
  get_process_mem (~> 0.2.1)
@@ -66,7 +66,7 @@ GEM
66
66
  ffi (1.15.5)
67
67
  get_process_mem (0.2.7)
68
68
  ffi (~> 1.0)
69
- google-protobuf (3.20.0-x86_64-darwin)
69
+ google-protobuf (3.20.1-x86_64-darwin)
70
70
  googleapis-common-protos-types (1.3.1)
71
71
  google-protobuf (~> 3.14)
72
72
  grpc (1.45.0-universal-darwin)
@@ -100,7 +100,7 @@ GEM
100
100
  rack-protection (2.2.0)
101
101
  rack
102
102
  rainbow (3.1.1)
103
- regexp_parser (2.3.0)
103
+ regexp_parser (2.3.1)
104
104
  rest-client (2.1.0)
105
105
  http-accept (>= 1.7.0, < 2.0)
106
106
  http-cookie (>= 1.0.2, < 2.0)
@@ -127,13 +127,13 @@ GEM
127
127
  diff-lcs (>= 1.2.0, < 2.0)
128
128
  rspec-support (~> 3.11.0)
129
129
  rspec-support (3.11.0)
130
- rubocop (1.27.0)
130
+ rubocop (1.28.2)
131
131
  parallel (~> 1.10)
132
132
  parser (>= 3.1.0.0)
133
133
  rainbow (>= 2.2.2, < 4.0)
134
134
  regexp_parser (>= 1.8, < 3.0)
135
135
  rexml
136
- rubocop-ast (>= 1.16.0, < 2.0)
136
+ rubocop-ast (>= 1.17.0, < 2.0)
137
137
  ruby-progressbar (~> 1.7)
138
138
  unicode-display_width (>= 1.4.0, < 3.0)
139
139
  rubocop-ast (1.17.0)
@@ -56,7 +56,7 @@ module Nonnative
56
56
  environment = environment.transform_keys(&:to_s).transform_values(&:to_s)
57
57
 
58
58
  environment.each_key do |k|
59
- environment[k] = ENV[k] || environment[k]
59
+ environment[k] = ENV.fetch(k, nil) || environment[k]
60
60
  end
61
61
 
62
62
  spawn(environment, service.command.call, %i[out err] => [service.log, 'a'])
@@ -18,11 +18,11 @@ module Nonnative
18
18
  private
19
19
 
20
20
  def env_strategy
21
- @env_strategy ||= ENV['NONNATIVE_STRATEGY']
21
+ @env_strategy ||= ENV.fetch('NONNATIVE_STRATEGY', nil)
22
22
  end
23
23
 
24
24
  def env_timeout
25
- @env_timeout ||= ENV['NONNATIVE_TIMEOUT']
25
+ @env_timeout ||= ENV.fetch('NONNATIVE_TIMEOUT', nil)
26
26
  end
27
27
  end
28
28
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nonnative
4
- VERSION = '1.59.0'
4
+ VERSION = '1.59.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.59.0
4
+ version: 1.59.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Falkowski