grntest 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/text/news.md +7 -0
- data/lib/grntest/executors/base-executor.rb +2 -2
- data/lib/grntest/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e3f89c9bfca8e9409f3ea9901545cdf88d8df0c
|
4
|
+
data.tar.gz: 7454542a28073b636438762f294b446a553d679f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6cb769472bcaf8c2309de3ffb290f26ee16296ad7ce9a5847719f042fad1e11239ea8c8d5fb131e523f631e88a637493678db3a61b6a2197a81b724970a6c70
|
7
|
+
data.tar.gz: 5f6ca62f6a91a41df7856a79155c54d947874e1d65e3c5be8d8f66a972adae9543f0b1dd30fc7045f9f86b596b439bab7c89420d69114f3784571479cb5080d9
|
data/doc/text/news.md
CHANGED
@@ -272,7 +272,7 @@ module Grntest
|
|
272
272
|
end
|
273
273
|
|
274
274
|
def extract_important_messages(log)
|
275
|
-
important_messages =
|
275
|
+
important_messages = []
|
276
276
|
log.each_line do |line|
|
277
277
|
timestamp, log_level, message = line.split(/\|\s*/, 3)
|
278
278
|
_ = timestamp # suppress warning
|
@@ -281,7 +281,7 @@ module Grntest
|
|
281
281
|
next if backtrace_log_message?(message)
|
282
282
|
important_messages << "\#|#{log_level}| #{message}"
|
283
283
|
end
|
284
|
-
important_messages
|
284
|
+
important_messages.join("\n")
|
285
285
|
end
|
286
286
|
|
287
287
|
def read_all_readable_content(output, options={})
|
data/lib/grntest/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grntest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-08-
|
12
|
+
date: 2014-08-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|