lazylead 0.3.0 → 0.4.3
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/.0pdd.yml +4 -1
- data/.circleci/config.yml +2 -0
- data/.docs/accuracy.md +107 -0
- data/.docs/accuracy_email.jpg +0 -0
- data/.docs/accuracy_jira_comment.jpg +0 -0
- data/.docs/propagate_down.md +1 -1
- data/.github/dependabot.yml +6 -0
- data/.pdd +1 -1
- data/.rubocop.yml +6 -0
- data/bin/lazylead +9 -3
- data/lazylead.gemspec +5 -4
- data/lib/lazylead/cc.rb +12 -6
- data/lib/lazylead/cli/app.rb +4 -3
- data/lib/lazylead/exchange.rb +1 -1
- data/lib/lazylead/log.rb +30 -8
- data/lib/lazylead/model.rb +44 -18
- data/lib/lazylead/opts.rb +68 -0
- data/lib/lazylead/postman.rb +1 -1
- data/lib/lazylead/schedule.rb +6 -4
- data/lib/lazylead/smtp.rb +1 -1
- data/lib/lazylead/system/fake.rb +1 -1
- data/lib/lazylead/system/jira.rb +17 -15
- data/lib/lazylead/system/synced.rb +2 -1
- data/lib/lazylead/task/accuracy/accuracy.rb +140 -0
- data/lib/lazylead/task/accuracy/affected_build.rb +43 -0
- data/lib/lazylead/task/accuracy/requirement.rb +40 -0
- data/lib/lazylead/task/alert.rb +8 -6
- data/lib/lazylead/task/confluence_ref.rb +4 -3
- data/lib/lazylead/task/echo.rb +4 -0
- data/lib/lazylead/task/fix_version.rb +10 -6
- data/lib/lazylead/task/missing_comment.rb +7 -5
- data/lib/lazylead/task/propagate_down.rb +11 -3
- data/lib/lazylead/task/savepoint.rb +1 -1
- data/lib/lazylead/task/touch.rb +104 -0
- data/lib/lazylead/version.rb +1 -1
- data/lib/messages/accuracy.erb +118 -0
- data/lib/messages/svn_touch.erb +147 -0
- data/readme.md +19 -18
- data/test/lazylead/cc_test.rb +22 -2
- data/test/lazylead/cli/app_test.rb +2 -2
- data/test/lazylead/exchange_test.rb +3 -3
- data/test/lazylead/model_test.rb +4 -4
- data/test/lazylead/opts_test.rb +70 -0
- data/test/lazylead/postman_test.rb +1 -1
- data/test/lazylead/smtp_test.rb +1 -1
- data/test/lazylead/system/jira_test.rb +35 -1
- data/test/lazylead/task/accuracy/accuracy_test.rb +73 -0
- data/test/lazylead/task/accuracy/affected_build_test.rb +42 -0
- data/test/lazylead/task/assignee_alert_test.rb +2 -2
- data/test/lazylead/task/duedate_test.rb +37 -27
- data/test/lazylead/task/fix_version_test.rb +9 -6
- data/test/lazylead/task/missing_comment_test.rb +11 -9
- data/test/lazylead/task/propagate_down_test.rb +4 -2
- data/test/lazylead/task/touch_test.rb +61 -0
- data/test/test.rb +9 -0
- data/upgrades/sqlite/999.testdata.sql +2 -1
- metadata +40 -8
- data/todo.yml +0 -6
@@ -34,8 +34,8 @@ require_relative "../../../lib/lazylead/task/alert"
|
|
34
34
|
|
35
35
|
module Lazylead
|
36
36
|
class AssigneeAlertTest < Lazylead::Test
|
37
|
-
test "issue #154
|
38
|
-
CLI::App.new(Log
|
37
|
+
test "issue #154 undefined method to_hash for nil object" do
|
38
|
+
CLI::App.new(Log.new, NoSchedule.new).run(
|
39
39
|
home: ".",
|
40
40
|
sqlite: "test/resources/#{no_ext(__FILE__)}.#{__method__}.db",
|
41
41
|
vcs4sql: "upgrades/sqlite",
|
@@ -41,10 +41,12 @@ module Lazylead
|
|
41
41
|
Task::AssigneeAlert.new.run(
|
42
42
|
NoAuthJira.new("https://jira.spring.io"),
|
43
43
|
Postman.new,
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
44
|
+
Opts.new(
|
45
|
+
"from" => "fake@email.com",
|
46
|
+
"sql" => "filter=16743",
|
47
|
+
"subject" => "[DD] PDTN!",
|
48
|
+
"template" => "lib/messages/due_date_expired.erb"
|
49
|
+
)
|
48
50
|
)
|
49
51
|
assert_equal 2,
|
50
52
|
Mail::TestMailer.deliveries
|
@@ -53,7 +55,7 @@ module Lazylead
|
|
53
55
|
end
|
54
56
|
|
55
57
|
test "configuration properties merged successfully" do
|
56
|
-
CLI::App.new(Log
|
58
|
+
CLI::App.new(Log.new, NoSchedule.new).run(
|
57
59
|
home: ".",
|
58
60
|
sqlite: "test/resources/#{no_ext(__FILE__)}.#{__method__}.db",
|
59
61
|
vcs4sql: "upgrades/sqlite",
|
@@ -75,10 +77,12 @@ module Lazylead
|
|
75
77
|
Task::AssigneeAlert.new.run(
|
76
78
|
NoAuthJira.new("https://jira.spring.io"),
|
77
79
|
Postman.new,
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
80
|
+
Opts.new(
|
81
|
+
"from" => "fake@email.com",
|
82
|
+
"sql" => "key in ('STS-3599')",
|
83
|
+
"subject" => "[DD] HMCHT!",
|
84
|
+
"template" => "lib/messages/due_date_expired.erb"
|
85
|
+
)
|
82
86
|
)
|
83
87
|
assert_email "[DD] HMCHT!",
|
84
88
|
%w[STS-3599 2013-11-08 Major Miles\ Parker Use JavaFX WebView]
|
@@ -89,12 +93,14 @@ module Lazylead
|
|
89
93
|
Task::Alert.new.run(
|
90
94
|
NoAuthJira.new("https://jira.spring.io"),
|
91
95
|
Postman.new,
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
96
|
+
Opts.new(
|
97
|
+
"from" => "fake@email.com",
|
98
|
+
"sql" => "key in ('STS-3599')",
|
99
|
+
"subject" => "ALRT: Frozen",
|
100
|
+
"template" => "lib/messages/due_date_expired.erb",
|
101
|
+
"to" => "big.boss@example.com",
|
102
|
+
"addressee" => "Boss"
|
103
|
+
)
|
98
104
|
)
|
99
105
|
assert_email "ALRT: Frozen",
|
100
106
|
%w[Hi Boss STS-3599 2013-11-08 Major Miles\ Parker Use JavaFX WebView]
|
@@ -105,13 +111,15 @@ module Lazylead
|
|
105
111
|
Task::Alert.new.run(
|
106
112
|
NoAuthJira.new("https://jira.spring.io"),
|
107
113
|
Postman.new,
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
114
|
+
Opts.new(
|
115
|
+
"from" => "fake@email.com",
|
116
|
+
"sql" => "key in ('STS-3599')",
|
117
|
+
"subject" => "CC: Watching",
|
118
|
+
"template" => "lib/messages/due_date_expired.erb",
|
119
|
+
"to" => "big.boss@example.com",
|
120
|
+
"addressee" => "Boss",
|
121
|
+
"cc" => "another.boss@example.com,mom@home.com"
|
122
|
+
)
|
115
123
|
)
|
116
124
|
assert_equal %w[another.boss@example.com mom@home.com],
|
117
125
|
Mail::TestMailer.deliveries
|
@@ -119,15 +127,17 @@ module Lazylead
|
|
119
127
|
.first.cc
|
120
128
|
end
|
121
129
|
|
122
|
-
test "reporter got alert about his/her tickets with expired
|
130
|
+
test "reporter got alert about his/her tickets with expired DD" do
|
123
131
|
Smtp.new.enable
|
124
132
|
Task::ReporterAlert.new.run(
|
125
133
|
NoAuthJira.new("https://jira.spring.io"),
|
126
134
|
Postman.new,
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
135
|
+
Opts.new(
|
136
|
+
"from" => "fake@email.com",
|
137
|
+
"sql" => "filter=16743",
|
138
|
+
"subject" => "DD Expired!",
|
139
|
+
"template" => "lib/messages/due_date_expired.erb"
|
140
|
+
)
|
131
141
|
)
|
132
142
|
assert_equal 2,
|
133
143
|
Mail::TestMailer.deliveries
|
@@ -26,6 +26,7 @@ require "mail"
|
|
26
26
|
|
27
27
|
require_relative "../../test"
|
28
28
|
require_relative "../../../lib/lazylead/smtp"
|
29
|
+
require_relative "../../../lib/lazylead/opts"
|
29
30
|
require_relative "../../../lib/lazylead/postman"
|
30
31
|
require_relative "../../../lib/lazylead/task/fix_version"
|
31
32
|
|
@@ -36,12 +37,14 @@ module Lazylead
|
|
36
37
|
Task::FixVersion.new.run(
|
37
38
|
NoAuthJira.new("https://jira.spring.io"),
|
38
39
|
Postman.new,
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
40
|
+
Opts.new(
|
41
|
+
"to" => "lead@company.com",
|
42
|
+
"from" => "ll@company.com",
|
43
|
+
"jql" => "key in ('DATAJDBC-480') and fixVersion is not empty",
|
44
|
+
"allowed" => "tom,mike,bob",
|
45
|
+
"subject" => "FixVersion: How dare you?",
|
46
|
+
"template" => "lib/messages/illegal_fixversion_change.erb"
|
47
|
+
)
|
45
48
|
)
|
46
49
|
assert_email "FixVersion: How dare you?",
|
47
50
|
%w[DATAJDBC-480 01-Apr-2020 Minor Mark\ Paluch tom,mike,bob EntityInstantiators]
|
@@ -37,15 +37,17 @@ module Lazylead
|
|
37
37
|
Task::MissingComment.new.run(
|
38
38
|
NoAuthJira.new("https://jira.spring.io"),
|
39
39
|
Postman.new,
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
40
|
+
Opts.new(
|
41
|
+
"to" => "lead@company.com",
|
42
|
+
"addressee" => "Tom",
|
43
|
+
"from" => "ll@company.com",
|
44
|
+
"jql" => "key=DATAJDBC-523",
|
45
|
+
"text" => "ftp.com/demo.avi",
|
46
|
+
"details" => "reference to <code>ftp.com/demo.avi</code>",
|
47
|
+
"subject" => "Expected ftp link is missing",
|
48
|
+
"template" => "lib/messages/missing_comment.erb",
|
49
|
+
"template_details" => "reference to <a href='file://ftp/path'>ftp</a>"
|
50
|
+
)
|
49
51
|
)
|
50
52
|
assert_email "Expected ftp link is missing",
|
51
53
|
%w[DATAJDBC-523 Major Mark\ Paluch https://github.com/spring-projects/spring-data-jdbc/commit/aadbb667ed1d61139d5ac51a06eb3dd1b39316db#diff-510a5041bb8a0575e97fedf105606b83R130]
|
@@ -66,8 +66,10 @@ module Lazylead
|
|
66
66
|
Task::PropagateDown.new.run(
|
67
67
|
Fake.new([parent, child]),
|
68
68
|
[],
|
69
|
-
|
70
|
-
|
69
|
+
Opts.new(
|
70
|
+
"jql" => "type=Defect and updated>-1h and subtasks without fields",
|
71
|
+
"propagate" => "customfield_101,customfield_102"
|
72
|
+
)
|
71
73
|
)
|
72
74
|
assert_entries(
|
73
75
|
{
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# The MIT License
|
4
|
+
#
|
5
|
+
# Copyright (c) 2019-2020 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 "mail"
|
26
|
+
require_relative "../../test"
|
27
|
+
require_relative "../../../lib/lazylead/smtp"
|
28
|
+
require_relative "../../../lib/lazylead/opts"
|
29
|
+
require_relative "../../../lib/lazylead/postman"
|
30
|
+
require_relative "../../../lib/lazylead/task/touch"
|
31
|
+
|
32
|
+
module Lazylead
|
33
|
+
class SvnTouchTest < Lazylead::Test
|
34
|
+
test "important files changed in svn repo" do
|
35
|
+
skip "No svn credentials provided" unless env? "svn_touch_user",
|
36
|
+
"svn_touch_password"
|
37
|
+
skip "No internet connection to riouxsvn.com" unless ping? "riouxsvn.com"
|
38
|
+
Lazylead::Smtp.new.enable
|
39
|
+
Task::SvnTouch.new.run(
|
40
|
+
nil,
|
41
|
+
Postman.new,
|
42
|
+
Opts.new(
|
43
|
+
"svn_url" => "https://svn.riouxsvn.com/touch4ll",
|
44
|
+
"svn_user" => ENV["svn_touch_user"],
|
45
|
+
"svn_password" => ENV["svn_touch_password"],
|
46
|
+
"commit_url" => "https://view.commit.com?rev=",
|
47
|
+
"user" => "https://user.com?id=",
|
48
|
+
"to" => "lead@fake.com",
|
49
|
+
"from" => "ll@fake.com",
|
50
|
+
"now" => "2020-08-17T00:00:00+01:00",
|
51
|
+
"period" => "864000",
|
52
|
+
"files" => "189.md,absent.txt",
|
53
|
+
"subject" => "[SVN] Important files have been changed!",
|
54
|
+
"template" => "lib/messages/svn_touch.erb"
|
55
|
+
)
|
56
|
+
)
|
57
|
+
assert_email "[SVN] Important files have been changed!",
|
58
|
+
%w[3 dgroup /189.md Add\ description\ for\ 189\ issue]
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
data/test/test.rb
CHANGED
@@ -110,5 +110,14 @@ module Lazylead
|
|
110
110
|
.first
|
111
111
|
.body.parts.first.body.raw_source
|
112
112
|
end
|
113
|
+
|
114
|
+
# Ping remote host
|
115
|
+
# https://github.com/eitoball/net-ping
|
116
|
+
# https://stackoverflow.com/a/35508446/6916890
|
117
|
+
# https://rubygems.org/gems/net-ping/versions/2.0.8
|
118
|
+
def ping?(host)
|
119
|
+
require "net/ping"
|
120
|
+
Net::Ping::External.new(host).ping?
|
121
|
+
end
|
113
122
|
end
|
114
123
|
end
|
@@ -41,4 +41,5 @@ values ('echo', '* * * * *', 'false', 1, 1, 1, 'Lazylead::Task::Echo', '{}'),
|
|
41
41
|
('issue 154', '* * * * *', 'false', 154, 1, 154, 'Lazylead::Task::AssigneeAlert', '{}'),
|
42
42
|
('task with complex cc', '* * * * *', 'false', 165, 1, 1, 'Lazylead::Task::Echo',
|
43
43
|
'{"cc":{"type":"Lazylead::PredefinedCC","opts": {"jvm":"tom@fake.com","jdbc":"mike@fake.com"}}}'),
|
44
|
-
('issue 171', '* * * * *', 'false', 171, 1, 1, 'Lazylead::Task::Echo', '{"envkey":"${key171}"}')
|
44
|
+
('issue 171', '* * * * *', 'false', 171, 1, 1, 'Lazylead::Task::Echo', '{"envkey":"${key171}"}'),
|
45
|
+
('issue 195', '* * * * *', 'false', 195, 1, 1, 'Lazylead::Task::Accuracy', '{"key":"value"}');
|
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.3
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yurii Dubinka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - '='
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 2.
|
89
|
+
version: 2.3.0
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - '='
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 2.
|
96
|
+
version: 2.3.0
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: logging
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -296,14 +296,14 @@ dependencies:
|
|
296
296
|
requirements:
|
297
297
|
- - '='
|
298
298
|
- !ruby/object:Gem::Version
|
299
|
-
version: 0.
|
299
|
+
version: 0.2.3
|
300
300
|
type: :development
|
301
301
|
prerelease: false
|
302
302
|
version_requirements: !ruby/object:Gem::Requirement
|
303
303
|
requirements:
|
304
304
|
- - '='
|
305
305
|
- !ruby/object:Gem::Version
|
306
|
-
version: 0.
|
306
|
+
version: 0.2.3
|
307
307
|
- !ruby/object:Gem::Dependency
|
308
308
|
name: guard
|
309
309
|
requirement: !ruby/object:Gem::Requirement
|
@@ -388,6 +388,20 @@ dependencies:
|
|
388
388
|
- - '='
|
389
389
|
- !ruby/object:Gem::Version
|
390
390
|
version: 1.3.6
|
391
|
+
- !ruby/object:Gem::Dependency
|
392
|
+
name: net-ping
|
393
|
+
requirement: !ruby/object:Gem::Requirement
|
394
|
+
requirements:
|
395
|
+
- - '='
|
396
|
+
- !ruby/object:Gem::Version
|
397
|
+
version: 2.0.8
|
398
|
+
type: :development
|
399
|
+
prerelease: false
|
400
|
+
version_requirements: !ruby/object:Gem::Requirement
|
401
|
+
requirements:
|
402
|
+
- - '='
|
403
|
+
- !ruby/object:Gem::Version
|
404
|
+
version: 2.0.8
|
391
405
|
- !ruby/object:Gem::Dependency
|
392
406
|
name: rake
|
393
407
|
requirement: !ruby/object:Gem::Requirement
|
@@ -541,6 +555,9 @@ files:
|
|
541
555
|
- ".docker/docker-compose.yml"
|
542
556
|
- ".docker/readme.md"
|
543
557
|
- ".docker/vcs.dockerfile"
|
558
|
+
- ".docs/accuracy.md"
|
559
|
+
- ".docs/accuracy_email.jpg"
|
560
|
+
- ".docs/accuracy_jira_comment.jpg"
|
544
561
|
- ".docs/duedate_expired.md"
|
545
562
|
- ".docs/propagate_down.md"
|
546
563
|
- ".gitattributes"
|
@@ -550,6 +567,7 @@ files:
|
|
550
567
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
551
568
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
552
569
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
570
|
+
- ".github/dependabot.yml"
|
553
571
|
- ".github/tasks.yml"
|
554
572
|
- ".github/trello.md"
|
555
573
|
- ".gitignore"
|
@@ -578,6 +596,7 @@ files:
|
|
578
596
|
- lib/lazylead/home.rb
|
579
597
|
- lib/lazylead/log.rb
|
580
598
|
- lib/lazylead/model.rb
|
599
|
+
- lib/lazylead/opts.rb
|
581
600
|
- lib/lazylead/postman.rb
|
582
601
|
- lib/lazylead/salt.rb
|
583
602
|
- lib/lazylead/schedule.rb
|
@@ -586,6 +605,9 @@ files:
|
|
586
605
|
- lib/lazylead/system/fake.rb
|
587
606
|
- lib/lazylead/system/jira.rb
|
588
607
|
- lib/lazylead/system/synced.rb
|
608
|
+
- lib/lazylead/task/accuracy/accuracy.rb
|
609
|
+
- lib/lazylead/task/accuracy/affected_build.rb
|
610
|
+
- lib/lazylead/task/accuracy/requirement.rb
|
589
611
|
- lib/lazylead/task/alert.rb
|
590
612
|
- lib/lazylead/task/confluence_ref.rb
|
591
613
|
- lib/lazylead/task/echo.rb
|
@@ -593,11 +615,14 @@ files:
|
|
593
615
|
- lib/lazylead/task/missing_comment.rb
|
594
616
|
- lib/lazylead/task/propagate_down.rb
|
595
617
|
- lib/lazylead/task/savepoint.rb
|
618
|
+
- lib/lazylead/task/touch.rb
|
596
619
|
- lib/lazylead/version.rb
|
620
|
+
- lib/messages/accuracy.erb
|
597
621
|
- lib/messages/due_date_expired.erb
|
598
622
|
- lib/messages/illegal_fixversion_change.erb
|
599
623
|
- lib/messages/missing_comment.erb
|
600
624
|
- lib/messages/savepoint.erb
|
625
|
+
- lib/messages/svn_touch.erb
|
601
626
|
- license.txt
|
602
627
|
- readme.md
|
603
628
|
- test/lazylead/allocated_test.rb
|
@@ -606,11 +631,14 @@ files:
|
|
606
631
|
- test/lazylead/confluence_test.rb
|
607
632
|
- test/lazylead/exchange_test.rb
|
608
633
|
- test/lazylead/model_test.rb
|
634
|
+
- test/lazylead/opts_test.rb
|
609
635
|
- test/lazylead/postman_test.rb
|
610
636
|
- test/lazylead/salt_test.rb
|
611
637
|
- test/lazylead/smoke_test.rb
|
612
638
|
- test/lazylead/smtp_test.rb
|
613
639
|
- test/lazylead/system/jira_test.rb
|
640
|
+
- test/lazylead/task/accuracy/accuracy_test.rb
|
641
|
+
- test/lazylead/task/accuracy/affected_build_test.rb
|
614
642
|
- test/lazylead/task/assignee_alert_test.rb
|
615
643
|
- test/lazylead/task/confluence_ref_test.rb
|
616
644
|
- test/lazylead/task/duedate_test.rb
|
@@ -619,10 +647,10 @@ files:
|
|
619
647
|
- test/lazylead/task/missing_comment_test.rb
|
620
648
|
- test/lazylead/task/propagate_down_test.rb
|
621
649
|
- test/lazylead/task/savepoint_test.rb
|
650
|
+
- test/lazylead/task/touch_test.rb
|
622
651
|
- test/lazylead/version_test.rb
|
623
652
|
- test/sqlite_test.rb
|
624
653
|
- test/test.rb
|
625
|
-
- todo.yml
|
626
654
|
- upgrades/sqlite/001-install-main-lazylead-tables.sql
|
627
655
|
- upgrades/sqlite/999.testdata.sql
|
628
656
|
homepage: http://github.com/dgroup/lazylead
|
@@ -630,7 +658,7 @@ licenses:
|
|
630
658
|
- MIT
|
631
659
|
metadata: {}
|
632
660
|
post_install_message: |-
|
633
|
-
Thanks for installing Lazylead v0.3
|
661
|
+
Thanks for installing Lazylead v0.4.3!
|
634
662
|
Read our blog posts: https://lazylead.org
|
635
663
|
Stay in touch with the community in Telegram: https://t.me/lazylead
|
636
664
|
Follow us on Twitter: https://twitter.com/lazylead
|
@@ -661,11 +689,14 @@ test_files:
|
|
661
689
|
- test/lazylead/confluence_test.rb
|
662
690
|
- test/lazylead/exchange_test.rb
|
663
691
|
- test/lazylead/model_test.rb
|
692
|
+
- test/lazylead/opts_test.rb
|
664
693
|
- test/lazylead/postman_test.rb
|
665
694
|
- test/lazylead/salt_test.rb
|
666
695
|
- test/lazylead/smoke_test.rb
|
667
696
|
- test/lazylead/smtp_test.rb
|
668
697
|
- test/lazylead/system/jira_test.rb
|
698
|
+
- test/lazylead/task/accuracy/accuracy_test.rb
|
699
|
+
- test/lazylead/task/accuracy/affected_build_test.rb
|
669
700
|
- test/lazylead/task/assignee_alert_test.rb
|
670
701
|
- test/lazylead/task/confluence_ref_test.rb
|
671
702
|
- test/lazylead/task/duedate_test.rb
|
@@ -674,6 +705,7 @@ test_files:
|
|
674
705
|
- test/lazylead/task/missing_comment_test.rb
|
675
706
|
- test/lazylead/task/propagate_down_test.rb
|
676
707
|
- test/lazylead/task/savepoint_test.rb
|
708
|
+
- test/lazylead/task/touch_test.rb
|
677
709
|
- test/lazylead/version_test.rb
|
678
710
|
- test/sqlite_test.rb
|
679
711
|
- test/test.rb
|