lazylead 0.9.3 → 0.10.0
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/Rakefile +1 -2
- data/lazylead.gemspec +11 -11
- data/lib/lazylead/confluence.rb +1 -2
- data/lib/lazylead/task/accuracy/accuracy.rb +2 -3
- data/lib/lazylead/task/accuracy/attachment.rb +1 -0
- data/lib/lazylead/task/accuracy/logs_link.rb +52 -0
- data/lib/lazylead/task/accuracy/testcase.rb +1 -1
- data/lib/lazylead/task/svn/svn.rb +1 -1
- data/lib/lazylead/version.rb +1 -1
- data/lib/messages/svn_diff.erb +1 -1
- data/lib/messages/svn_grep.erb +34 -32
- data/readme.md +0 -1
- data/test/lazylead/task/accuracy/logs_link_test.rb +50 -0
- data/test/lazylead/task/accuracy/testcase_test.rb +9 -0
- metadata +24 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 487f4f5deba01c6b85f9730f2652d5b70af87822206acd256de236051f8f3af9
|
|
4
|
+
data.tar.gz: f8ac846170c9bade03fa003b16bd27b86b0565a0218afdc315a1ae1b1ca7794f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81c5cfc1ccb93691b58250b5a27b41963e37f2c375195483dbd8e21e1da3fbbe0c94944cef83b38c821a10297d62152e20dc36eb39ed50d1724f5badae4bd3af
|
|
7
|
+
data.tar.gz: cb01af60779d0555610ea2f2b993ad61880863fe3515154bbcf0415f4e003a30a7a461bbc1907f8ff61461aaf6715fbe4190eecc4a2fa1210c36dc171d59cba7
|
data/Rakefile
CHANGED
|
@@ -114,8 +114,7 @@ task :sqlint do
|
|
|
114
114
|
if total.positive?
|
|
115
115
|
abort "#{total.colorize(:red)} SQL violations found."
|
|
116
116
|
else
|
|
117
|
-
puts "#{src.size} files inspected, #{'no offenses'.colorize(:green)} "
|
|
118
|
-
"detected"
|
|
117
|
+
puts "#{src.size} files inspected, #{'no offenses'.colorize(:green)} detected"
|
|
119
118
|
end
|
|
120
119
|
end
|
|
121
120
|
|
data/lazylead.gemspec
CHANGED
|
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
s.rubygems_version = "2.2"
|
|
33
33
|
s.required_ruby_version = ">=2.6.5"
|
|
34
34
|
s.name = "lazylead"
|
|
35
|
-
s.version = "0.
|
|
35
|
+
s.version = "0.10.0"
|
|
36
36
|
s.license = "MIT"
|
|
37
37
|
s.summary = "Eliminate the annoying work within bug-trackers."
|
|
38
38
|
s.description = "Ticketing systems (Github, Jira, etc.) are strongly
|
|
@@ -45,7 +45,7 @@ tasks instead of solving technical problems."
|
|
|
45
45
|
s.authors = ["Yurii Dubinka"]
|
|
46
46
|
s.email = "yurii.dubinka@gmail.com"
|
|
47
47
|
s.homepage = "http://github.com/dgroup/lazylead"
|
|
48
|
-
s.post_install_message = "Thanks for installing Lazylead v0.
|
|
48
|
+
s.post_install_message = "Thanks for installing Lazylead v0.10.0!
|
|
49
49
|
Read our blog posts: https://lazylead.org
|
|
50
50
|
Stay in touch with the community in Telegram: https://t.me/lazylead
|
|
51
51
|
Follow us on Twitter: https://twitter.com/lazylead
|
|
@@ -58,7 +58,7 @@ tasks instead of solving technical problems."
|
|
|
58
58
|
s.add_runtime_dependency "activerecord", "6.1.3"
|
|
59
59
|
s.add_runtime_dependency "backtrace", "0.3"
|
|
60
60
|
s.add_runtime_dependency "colorize", "0.8.1"
|
|
61
|
-
s.add_runtime_dependency "faraday", "1.
|
|
61
|
+
s.add_runtime_dependency "faraday", "1.5.0"
|
|
62
62
|
s.add_runtime_dependency "get_process_mem", "0.2.7"
|
|
63
63
|
s.add_runtime_dependency "inifile", "3.0.0"
|
|
64
64
|
s.add_runtime_dependency "jira-ruby", "2.1.5"
|
|
@@ -69,9 +69,9 @@ tasks instead of solving technical problems."
|
|
|
69
69
|
s.add_runtime_dependency "openssl", "2.1.2"
|
|
70
70
|
s.add_runtime_dependency "railties", "6.1.3"
|
|
71
71
|
s.add_runtime_dependency "require_all", "3.0.0"
|
|
72
|
-
s.add_runtime_dependency "rubyzip", "2.3.
|
|
72
|
+
s.add_runtime_dependency "rubyzip", "2.3.2"
|
|
73
73
|
s.add_runtime_dependency "rufus-scheduler", "3.7.0"
|
|
74
|
-
s.add_runtime_dependency "slop", "4.9.
|
|
74
|
+
s.add_runtime_dependency "slop", "4.9.1"
|
|
75
75
|
s.add_runtime_dependency "sqlite3", "1.4.2"
|
|
76
76
|
s.add_runtime_dependency "tempfile", "0.1.1"
|
|
77
77
|
s.add_runtime_dependency "tilt", "2.0.10"
|
|
@@ -87,14 +87,14 @@ tasks instead of solving technical problems."
|
|
|
87
87
|
s.add_development_dependency "minitest-hooks", "1.5.0"
|
|
88
88
|
s.add_development_dependency "minitest-reporters", "1.4.3"
|
|
89
89
|
s.add_development_dependency "net-ping", "2.0.8"
|
|
90
|
-
s.add_development_dependency "rake", "13.0.
|
|
90
|
+
s.add_development_dependency "rake", "13.0.4"
|
|
91
91
|
s.add_development_dependency "random-port", "0.5.1"
|
|
92
|
-
s.add_development_dependency "rdoc", "6.3.
|
|
93
|
-
s.add_development_dependency "rubocop", "1.
|
|
94
|
-
s.add_development_dependency "rubocop-minitest", "0.
|
|
92
|
+
s.add_development_dependency "rdoc", "6.3.2"
|
|
93
|
+
s.add_development_dependency "rubocop", "1.18.3"
|
|
94
|
+
s.add_development_dependency "rubocop-minitest", "0.14.0"
|
|
95
95
|
s.add_development_dependency "rubocop-performance", "1.11.3"
|
|
96
|
-
s.add_development_dependency "rubocop-rake", "0.
|
|
97
|
-
s.add_development_dependency "rubocop-rspec", "2.
|
|
96
|
+
s.add_development_dependency "rubocop-rake", "0.6.0"
|
|
97
|
+
s.add_development_dependency "rubocop-rspec", "2.4.0"
|
|
98
98
|
s.add_development_dependency "sqlint", "0.2.0"
|
|
99
99
|
s.add_development_dependency "tempfile", "0.1.1"
|
|
100
100
|
s.add_development_dependency "xcop", "0.6.2"
|
data/lib/lazylead/confluence.rb
CHANGED
|
@@ -76,8 +76,7 @@ module Lazylead
|
|
|
76
76
|
return "" if resp.blank?
|
|
77
77
|
pages = JSON.parse(resp)
|
|
78
78
|
return "" if pages["results"].empty?
|
|
79
|
-
"#{@conf.url}/pages/viewpage.action?"
|
|
80
|
-
"pageId=#{pages['results'].first['id']}"
|
|
79
|
+
"#{@conf.url}/pages/viewpage.action?pageId=#{pages['results'].first['id']}"
|
|
81
80
|
end
|
|
82
81
|
end
|
|
83
82
|
|
|
@@ -86,7 +86,7 @@ module Lazylead
|
|
|
86
86
|
"Hi [~#{reporter}],",
|
|
87
87
|
"",
|
|
88
88
|
"The triage accuracy is '{color:#{color}}#{@score}{color}'" \
|
|
89
|
-
|
|
89
|
+
" (~{color:#{color}}#{@accuracy}%{color}), here are the reasons why:",
|
|
90
90
|
"|| Ticket requirement || Status || Field ||"
|
|
91
91
|
]
|
|
92
92
|
@opts[:rules].each do |r|
|
|
@@ -94,8 +94,7 @@ module Lazylead
|
|
|
94
94
|
end
|
|
95
95
|
comment << docs_link
|
|
96
96
|
comment << ""
|
|
97
|
-
comment << "Posted by [lazylead v#{Lazylead::VERSION}|"
|
|
98
|
-
"https://bit.ly/2NjdndS]."
|
|
97
|
+
comment << "Posted by [lazylead v#{Lazylead::VERSION}|https://bit.ly/2NjdndS]."
|
|
99
98
|
comment.join("\r\n")
|
|
100
99
|
end
|
|
101
100
|
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# The MIT License
|
|
4
|
+
#
|
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
|
6
|
+
#
|
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
# of this software and associated documentation files (the "Software"),
|
|
9
|
+
# to deal in the Software without restriction, including without limitation
|
|
10
|
+
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
11
|
+
# and/or sell copies of the Software, and to permit persons to whom
|
|
12
|
+
# the Software is furnished to do so, subject to the following conditions:
|
|
13
|
+
#
|
|
14
|
+
# The above copyright notice and this permission notice shall be included
|
|
15
|
+
# in all copies or substantial portions of the Software.
|
|
16
|
+
#
|
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
22
|
+
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
23
|
+
# OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24
|
+
|
|
25
|
+
require_relative "logs"
|
|
26
|
+
require_relative "attachment"
|
|
27
|
+
|
|
28
|
+
module Lazylead
|
|
29
|
+
# Check that ticket has link/reference to log record(s) in another system like ELK, GrayLog, etc.
|
|
30
|
+
# or attachment with plain log file
|
|
31
|
+
class LogsLink < Lazylead::Logs
|
|
32
|
+
def initialize(link)
|
|
33
|
+
super
|
|
34
|
+
@link = link
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def passed(issue)
|
|
38
|
+
super(issue) || link?(issue)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# Ensure that ticket has a link to external logs system like ELK, GrayLog, etc.
|
|
42
|
+
def link?(issue)
|
|
43
|
+
return false if issue.description.nil?
|
|
44
|
+
issue.description
|
|
45
|
+
.split("\n")
|
|
46
|
+
.reject(&:blank?)
|
|
47
|
+
.flat_map(&:split)
|
|
48
|
+
.reject(&:blank?)
|
|
49
|
+
.any? { |word| word.start_with? @link }
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
@@ -66,7 +66,7 @@ module Lazylead
|
|
|
66
66
|
def detect_tc(line, index)
|
|
67
67
|
return unless @tc.negative?
|
|
68
68
|
@tc = index if eql? line, %w[testcase: tc: teststeps: teststeps steps: tcsteps: tc testcases
|
|
69
|
-
steps usecase]
|
|
69
|
+
steps usecase pre-requisitesandsteps:]
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
# Detect index of line with actual result
|
data/lib/lazylead/version.rb
CHANGED
data/lib/messages/svn_diff.erb
CHANGED
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
<a href="<%= user %><%= commit.author %>"><%= commit.author %></a>
|
|
99
99
|
</div>
|
|
100
100
|
</td>
|
|
101
|
-
<td><%=
|
|
101
|
+
<td><%= commit.time %></td>
|
|
102
102
|
<td><%= commit.lines[1] %></td>
|
|
103
103
|
</tr>
|
|
104
104
|
<% end %>
|
data/lib/messages/svn_grep.erb
CHANGED
|
@@ -64,14 +64,8 @@
|
|
|
64
64
|
padding: 36px
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
border-radius: 3.5px;
|
|
70
|
-
overflow: hidden;
|
|
71
|
-
display: inline-block;
|
|
72
|
-
line-height: 15px;
|
|
73
|
-
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
74
|
-
border: 1px solid #BCC6CC;
|
|
67
|
+
td {
|
|
68
|
+
padding: 2px;
|
|
75
69
|
}
|
|
76
70
|
|
|
77
71
|
.commit * {
|
|
@@ -86,29 +80,37 @@
|
|
|
86
80
|
<p>Hi,</p>
|
|
87
81
|
<p>The following file(s) contain text <code><%= text %></code> in
|
|
88
82
|
<a href="<%= svn_url %>"><%= svn_url %></a>:</p>
|
|
89
|
-
|
|
90
|
-
<
|
|
91
|
-
<
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
<p
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
<%
|
|
111
|
-
<p
|
|
112
|
-
|
|
83
|
+
<table summary="table with svn commits">
|
|
84
|
+
<tr>
|
|
85
|
+
<th id="rev">rev</th>
|
|
86
|
+
<th id="when">when</th>
|
|
87
|
+
<th id="author">author</th>
|
|
88
|
+
<th id="commit_msg" style="text-align: left">commit</th>
|
|
89
|
+
</tr>
|
|
90
|
+
<% entries.each do |commit| %>
|
|
91
|
+
<tr>
|
|
92
|
+
<td><a href="<%= commit_url %><%= commit.rev %>"><%= commit.rev %></a></td>
|
|
93
|
+
<td><%= commit.time %></td>
|
|
94
|
+
<td><a href="<%= user %><%= commit.author %>"><%= commit.author %></a></td>
|
|
95
|
+
<td>
|
|
96
|
+
<b><p><%= commit.msg %></p></b>
|
|
97
|
+
<% commit.diff(text.split(",")).each do |line| %>
|
|
98
|
+
<% if line.start_with?("+++") || line.start_with?("---") %>
|
|
99
|
+
<p style="background: gainsboro;"><%= line.gsub(/[<>]/, '<' => '<', '>' => '>') %></p>
|
|
100
|
+
<% elsif text.split(",").any? { |t| line.include? t } %>
|
|
101
|
+
<p style="background: #F9F103;"><%= line.gsub(/[<>]/, '<' => '<', '>' => '>') %></p>
|
|
102
|
+
<% elsif line.start_with?("+") %>
|
|
103
|
+
<p style="<%= "background: darkseagreen;" %>"><%= line.gsub(/[<>]/, '<' => '<', '>' => '>') %></p>
|
|
104
|
+
<% elsif line.start_with?("-") %>
|
|
105
|
+
<p style="<%= "background: lightsalmon;" %>"><%= line.gsub(/[<>]/, '<' => '<', '>' => '>') %></p>
|
|
106
|
+
<% else %>
|
|
107
|
+
<p style="background: gainsboro;"><%= line.gsub(/[<>]/, '<' => '<', '>' => '>') %></p>
|
|
108
|
+
<% end %>
|
|
109
|
+
<% end %>
|
|
110
|
+
</td>
|
|
111
|
+
</tr>
|
|
112
|
+
<% end %>
|
|
113
|
+
</table>
|
|
114
|
+
<p>Posted by<a href="https://github.com/dgroup/lazylead">lazylead v<%= version %></a>.</p>
|
|
113
115
|
</body>
|
|
114
116
|
</html>
|
data/readme.md
CHANGED
|
@@ -177,7 +177,6 @@ For simplicity, we are using [docker-compose](https://docs.docker.com/compose/):
|
|
|
177
177
|
### How to contribute?
|
|
178
178
|
|
|
179
179
|
<a href="https://www.buymeacoffee.com/lazylead" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
|
|
180
|
-
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=YLV7Z9UUM3AJL)
|
|
181
180
|
|
|
182
181
|
[Pull requests](http://www.elegantobjects.org/#principles) are welcome! Don't forget to add your name to contribution section and run this, beforehand:
|
|
183
182
|
```ruby
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# The MIT License
|
|
4
|
+
#
|
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
|
6
|
+
#
|
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
# of this software and associated documentation files (the "Software"),
|
|
9
|
+
# to deal in the Software without restriction, including without limitation
|
|
10
|
+
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
11
|
+
# and/or sell copies of the Software, and to permit persons to whom
|
|
12
|
+
# the Software is furnished to do so, subject to the following conditions:
|
|
13
|
+
#
|
|
14
|
+
# The above copyright notice and this permission notice shall be included
|
|
15
|
+
# in all copies or substantial portions of the Software.
|
|
16
|
+
#
|
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
22
|
+
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
23
|
+
# OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24
|
+
|
|
25
|
+
require_relative "../../../test"
|
|
26
|
+
require_relative "../../../../lib/lazylead/task/accuracy/logs_link"
|
|
27
|
+
|
|
28
|
+
module Lazylead
|
|
29
|
+
class LogsLinkTest < Lazylead::Test
|
|
30
|
+
test "log file is present" do
|
|
31
|
+
assert LogsLink.new("https://mygraylog.com/log#5").passed(
|
|
32
|
+
OpenStruct.new(
|
|
33
|
+
attachments: [OpenStruct.new(attrs: { "size" => 10_241, "filename" => "catalina.log" })]
|
|
34
|
+
)
|
|
35
|
+
)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
test "log file is absent but description has log reference" do
|
|
39
|
+
assert LogsLink.new("https://mygraylog.com").passed(
|
|
40
|
+
OpenStruct.new(description: "Here is the log for current ticket https://mygraylog.com/log#5")
|
|
41
|
+
)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
test "log file is absent and link is absent" do
|
|
45
|
+
refute LogsLink.new("https://mygraylog.com").passed(
|
|
46
|
+
OpenStruct.new(attachments: [])
|
|
47
|
+
)
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
@@ -291,6 +291,15 @@ module Lazylead
|
|
|
291
291
|
*{color:#DE10AA}Actual Result:{color}* = YYYY"
|
|
292
292
|
end
|
|
293
293
|
|
|
294
|
+
test "TC with prerequisites" do
|
|
295
|
+
assert testcase? "{color:#0747a6}+*Pre-requisites and Steps:*+{color}
|
|
296
|
+
# Step 1
|
|
297
|
+
# Step ..
|
|
298
|
+
# Step N
|
|
299
|
+
*{color:#00673A}Expected result:{color}* = XXXX
|
|
300
|
+
*{color:#DE10AA}Actual Result:{color}* = YYYY"
|
|
301
|
+
end
|
|
302
|
+
|
|
294
303
|
# ensure that issue description has a test case, AR and ER
|
|
295
304
|
def testcase?(desc)
|
|
296
305
|
Testcase.new.passed(OpenStruct.new(description: desc))
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lazylead
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yurii Dubinka
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -58,14 +58,14 @@ dependencies:
|
|
|
58
58
|
requirements:
|
|
59
59
|
- - '='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 1.
|
|
61
|
+
version: 1.5.0
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - '='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 1.
|
|
68
|
+
version: 1.5.0
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: get_process_mem
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -212,14 +212,14 @@ dependencies:
|
|
|
212
212
|
requirements:
|
|
213
213
|
- - '='
|
|
214
214
|
- !ruby/object:Gem::Version
|
|
215
|
-
version: 2.3.
|
|
215
|
+
version: 2.3.2
|
|
216
216
|
type: :runtime
|
|
217
217
|
prerelease: false
|
|
218
218
|
version_requirements: !ruby/object:Gem::Requirement
|
|
219
219
|
requirements:
|
|
220
220
|
- - '='
|
|
221
221
|
- !ruby/object:Gem::Version
|
|
222
|
-
version: 2.3.
|
|
222
|
+
version: 2.3.2
|
|
223
223
|
- !ruby/object:Gem::Dependency
|
|
224
224
|
name: rufus-scheduler
|
|
225
225
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -240,14 +240,14 @@ dependencies:
|
|
|
240
240
|
requirements:
|
|
241
241
|
- - '='
|
|
242
242
|
- !ruby/object:Gem::Version
|
|
243
|
-
version: 4.9.
|
|
243
|
+
version: 4.9.1
|
|
244
244
|
type: :runtime
|
|
245
245
|
prerelease: false
|
|
246
246
|
version_requirements: !ruby/object:Gem::Requirement
|
|
247
247
|
requirements:
|
|
248
248
|
- - '='
|
|
249
249
|
- !ruby/object:Gem::Version
|
|
250
|
-
version: 4.9.
|
|
250
|
+
version: 4.9.1
|
|
251
251
|
- !ruby/object:Gem::Dependency
|
|
252
252
|
name: sqlite3
|
|
253
253
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -464,14 +464,14 @@ dependencies:
|
|
|
464
464
|
requirements:
|
|
465
465
|
- - '='
|
|
466
466
|
- !ruby/object:Gem::Version
|
|
467
|
-
version: 13.0.
|
|
467
|
+
version: 13.0.4
|
|
468
468
|
type: :development
|
|
469
469
|
prerelease: false
|
|
470
470
|
version_requirements: !ruby/object:Gem::Requirement
|
|
471
471
|
requirements:
|
|
472
472
|
- - '='
|
|
473
473
|
- !ruby/object:Gem::Version
|
|
474
|
-
version: 13.0.
|
|
474
|
+
version: 13.0.4
|
|
475
475
|
- !ruby/object:Gem::Dependency
|
|
476
476
|
name: random-port
|
|
477
477
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -492,42 +492,42 @@ dependencies:
|
|
|
492
492
|
requirements:
|
|
493
493
|
- - '='
|
|
494
494
|
- !ruby/object:Gem::Version
|
|
495
|
-
version: 6.3.
|
|
495
|
+
version: 6.3.2
|
|
496
496
|
type: :development
|
|
497
497
|
prerelease: false
|
|
498
498
|
version_requirements: !ruby/object:Gem::Requirement
|
|
499
499
|
requirements:
|
|
500
500
|
- - '='
|
|
501
501
|
- !ruby/object:Gem::Version
|
|
502
|
-
version: 6.3.
|
|
502
|
+
version: 6.3.2
|
|
503
503
|
- !ruby/object:Gem::Dependency
|
|
504
504
|
name: rubocop
|
|
505
505
|
requirement: !ruby/object:Gem::Requirement
|
|
506
506
|
requirements:
|
|
507
507
|
- - '='
|
|
508
508
|
- !ruby/object:Gem::Version
|
|
509
|
-
version: 1.
|
|
509
|
+
version: 1.18.3
|
|
510
510
|
type: :development
|
|
511
511
|
prerelease: false
|
|
512
512
|
version_requirements: !ruby/object:Gem::Requirement
|
|
513
513
|
requirements:
|
|
514
514
|
- - '='
|
|
515
515
|
- !ruby/object:Gem::Version
|
|
516
|
-
version: 1.
|
|
516
|
+
version: 1.18.3
|
|
517
517
|
- !ruby/object:Gem::Dependency
|
|
518
518
|
name: rubocop-minitest
|
|
519
519
|
requirement: !ruby/object:Gem::Requirement
|
|
520
520
|
requirements:
|
|
521
521
|
- - '='
|
|
522
522
|
- !ruby/object:Gem::Version
|
|
523
|
-
version: 0.
|
|
523
|
+
version: 0.14.0
|
|
524
524
|
type: :development
|
|
525
525
|
prerelease: false
|
|
526
526
|
version_requirements: !ruby/object:Gem::Requirement
|
|
527
527
|
requirements:
|
|
528
528
|
- - '='
|
|
529
529
|
- !ruby/object:Gem::Version
|
|
530
|
-
version: 0.
|
|
530
|
+
version: 0.14.0
|
|
531
531
|
- !ruby/object:Gem::Dependency
|
|
532
532
|
name: rubocop-performance
|
|
533
533
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -548,28 +548,28 @@ dependencies:
|
|
|
548
548
|
requirements:
|
|
549
549
|
- - '='
|
|
550
550
|
- !ruby/object:Gem::Version
|
|
551
|
-
version: 0.
|
|
551
|
+
version: 0.6.0
|
|
552
552
|
type: :development
|
|
553
553
|
prerelease: false
|
|
554
554
|
version_requirements: !ruby/object:Gem::Requirement
|
|
555
555
|
requirements:
|
|
556
556
|
- - '='
|
|
557
557
|
- !ruby/object:Gem::Version
|
|
558
|
-
version: 0.
|
|
558
|
+
version: 0.6.0
|
|
559
559
|
- !ruby/object:Gem::Dependency
|
|
560
560
|
name: rubocop-rspec
|
|
561
561
|
requirement: !ruby/object:Gem::Requirement
|
|
562
562
|
requirements:
|
|
563
563
|
- - '='
|
|
564
564
|
- !ruby/object:Gem::Version
|
|
565
|
-
version: 2.
|
|
565
|
+
version: 2.4.0
|
|
566
566
|
type: :development
|
|
567
567
|
prerelease: false
|
|
568
568
|
version_requirements: !ruby/object:Gem::Requirement
|
|
569
569
|
requirements:
|
|
570
570
|
- - '='
|
|
571
571
|
- !ruby/object:Gem::Version
|
|
572
|
-
version: 2.
|
|
572
|
+
version: 2.4.0
|
|
573
573
|
- !ruby/object:Gem::Dependency
|
|
574
574
|
name: sqlint
|
|
575
575
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -694,6 +694,7 @@ files:
|
|
|
694
694
|
- lib/lazylead/task/accuracy/attachment.rb
|
|
695
695
|
- lib/lazylead/task/accuracy/environment.rb
|
|
696
696
|
- lib/lazylead/task/accuracy/logs.rb
|
|
697
|
+
- lib/lazylead/task/accuracy/logs_link.rb
|
|
697
698
|
- lib/lazylead/task/accuracy/onlyll.rb
|
|
698
699
|
- lib/lazylead/task/accuracy/records.rb
|
|
699
700
|
- lib/lazylead/task/accuracy/requirement.rb
|
|
@@ -752,6 +753,7 @@ files:
|
|
|
752
753
|
- test/lazylead/task/accuracy/affected_build_test.rb
|
|
753
754
|
- test/lazylead/task/accuracy/attachment_test.rb
|
|
754
755
|
- test/lazylead/task/accuracy/environment_test.rb
|
|
756
|
+
- test/lazylead/task/accuracy/logs_link_test.rb
|
|
755
757
|
- test/lazylead/task/accuracy/logs_test.rb
|
|
756
758
|
- test/lazylead/task/accuracy/onlyll_test.rb
|
|
757
759
|
- test/lazylead/task/accuracy/records_test.rb
|
|
@@ -788,7 +790,7 @@ licenses:
|
|
|
788
790
|
- MIT
|
|
789
791
|
metadata: {}
|
|
790
792
|
post_install_message: |-
|
|
791
|
-
Thanks for installing Lazylead v0.
|
|
793
|
+
Thanks for installing Lazylead v0.10.0!
|
|
792
794
|
Read our blog posts: https://lazylead.org
|
|
793
795
|
Stay in touch with the community in Telegram: https://t.me/lazylead
|
|
794
796
|
Follow us on Twitter: https://twitter.com/lazylead
|
|
@@ -829,6 +831,7 @@ test_files:
|
|
|
829
831
|
- test/lazylead/task/accuracy/affected_build_test.rb
|
|
830
832
|
- test/lazylead/task/accuracy/attachment_test.rb
|
|
831
833
|
- test/lazylead/task/accuracy/environment_test.rb
|
|
834
|
+
- test/lazylead/task/accuracy/logs_link_test.rb
|
|
832
835
|
- test/lazylead/task/accuracy/logs_test.rb
|
|
833
836
|
- test/lazylead/task/accuracy/onlyll_test.rb
|
|
834
837
|
- test/lazylead/task/accuracy/records_test.rb
|