nonnative 1.61.0 → 1.62.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09d70b9c1d1892ed5d19d59e6130115721e8982d6ec5be4499cdbfae2ffa01b4'
4
- data.tar.gz: 4fed0557560e55343d681176ffe449de0fe789a6332ff3c6f90e520b2b87924c
3
+ metadata.gz: 7c0356dc5f399e9fa703d3bf310a03349d5b3762124738746fbb982ab7f9261c
4
+ data.tar.gz: b69f1ac927e2f6dad05a453d0e9919dd09d7ed7a67b5473cf61874b53404a67a
5
5
  SHA512:
6
- metadata.gz: 3e037a8f8a4645455f9a2e18c030d582785d5d2d000635480ba776c994c1957b257dfe8330a899469707366c7942897778155e2a75b8f40ef202fcd018cb0a0b
7
- data.tar.gz: '02228f975130c4a076ab9f3001277466db84b6bc8ae6f9a19ac185157f7adda303f720ea93c4b4e4825892620d95332572ca1fca17d02ef400de039d21120cd8'
6
+ metadata.gz: 0b15cc973504888ef73f821a74105b0209eb25c708451062fee4612ea8e4b16f07fbdbac24e6aab05ab6e33e0bb6da3866b6a1ed8145411f6cc4d4a7f77a3af9
7
+ data.tar.gz: eb46dc1747a0390f4ad0736fa4bdbf4621430b957a9d79ed7d1b85f42e10405f83ab1c39c26d2ab6c6d044b6e866b24d71aba1ff25ebb4f0b1956cd1d2de4574
data/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
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.62.0](https://github.com/alexfalkowski/nonnative/compare/v1.61.0...v1.62.0) (2022-04-25)
6
+
7
+
8
+ ### Features
9
+
10
+ * add ability to read from log file ([#121](https://github.com/alexfalkowski/nonnative/issues/121)) ([eb4638f](https://github.com/alexfalkowski/nonnative/commit/eb4638f3ca8636ca68f989209a6e73831e61a678))
11
+
12
+ ## [1.61.0](https://github.com/alexfalkowski/nonnative/compare/v1.60.0...v1.61.0) (2022-04-25)
13
+
14
+
15
+ ### Features
16
+
17
+ * allow checking logs ([#120](https://github.com/alexfalkowski/nonnative/issues/120)) ([dc95fd2](https://github.com/alexfalkowski/nonnative/commit/dc95fd2977c3900d2ae6447d517f410e1128837f))
18
+
5
19
  ## [1.60.0](https://github.com/alexfalkowski/nonnative/compare/v1.59.1...v1.60.0) (2022-04-25)
6
20
 
7
21
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nonnative (1.61.0)
4
+ nonnative (1.62.0)
5
5
  concurrent-ruby (~> 1.0, >= 1.0.5)
6
6
  cucumber (>= 7, < 8)
7
7
  get_process_mem (~> 0.2.1)
@@ -73,3 +73,7 @@ Then('I should see a log entry of {string} for process {string}') do |message, p
73
73
  process = Nonnative.configuration.process_by_name(process)
74
74
  expect(Nonnative.log_lines(process.log, ->(l) { l.include?(message) }).first).to include(message)
75
75
  end
76
+
77
+ Then('I should see a log entry of {string} in the file {string}') do |message, path|
78
+ expect(Nonnative.log_lines(path, ->(l) { l.include?(message) }).first).to include(message)
79
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nonnative
4
- VERSION = '1.61.0'
4
+ VERSION = '1.62.0'
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.61.0
4
+ version: 1.62.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Falkowski