lazylead 0.7.2 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.docs/duedate_expired.md +1 -1
- data/.rubocop.yml +18 -3
- data/Gemfile +1 -1
- data/Guardfile +1 -1
- data/Rakefile +1 -1
- data/bin/lazylead +1 -1
- data/lazylead.gemspec +11 -11
- data/lib/lazylead.rb +2 -2
- data/lib/lazylead/allocated.rb +1 -1
- data/lib/lazylead/cc.rb +1 -1
- data/lib/lazylead/cli/app.rb +1 -1
- data/lib/lazylead/confluence.rb +1 -1
- data/lib/lazylead/email.rb +1 -1
- data/lib/lazylead/exchange.rb +1 -1
- data/lib/lazylead/home.rb +1 -1
- data/lib/lazylead/log.rb +1 -1
- data/lib/lazylead/model.rb +1 -1
- data/lib/lazylead/opts.rb +6 -3
- data/lib/lazylead/postman.rb +1 -1
- data/lib/lazylead/requires.rb +38 -0
- data/lib/lazylead/salt.rb +1 -1
- data/lib/lazylead/schedule.rb +1 -1
- data/lib/lazylead/smtp.rb +1 -1
- data/lib/lazylead/system/empty.rb +1 -1
- data/lib/lazylead/system/fake.rb +1 -1
- data/lib/lazylead/system/jira.rb +19 -18
- data/lib/lazylead/system/synced.rb +1 -1
- data/lib/lazylead/task/accuracy/accuracy.rb +15 -18
- data/lib/lazylead/task/accuracy/affected_build.rb +1 -1
- data/lib/lazylead/task/accuracy/attachment.rb +1 -1
- data/lib/lazylead/task/accuracy/environment.rb +1 -1
- data/lib/lazylead/task/accuracy/logs.rb +1 -1
- data/lib/lazylead/task/accuracy/onlyll.rb +1 -1
- data/lib/lazylead/task/accuracy/records.rb +1 -1
- data/lib/lazylead/task/accuracy/requirement.rb +1 -1
- data/lib/lazylead/task/accuracy/servers.rb +1 -1
- data/lib/lazylead/task/accuracy/stacktrace.rb +1 -1
- data/lib/lazylead/task/accuracy/testcase.rb +1 -1
- data/lib/lazylead/task/accuracy/wiki.rb +1 -1
- data/lib/lazylead/task/{alert.rb → alert/alert.rb} +6 -6
- data/lib/lazylead/task/alert/alertif.rb +75 -0
- data/lib/lazylead/task/alert/changed_to.rb +58 -0
- data/lib/lazylead/task/assignment.rb +1 -1
- data/lib/lazylead/task/confluence_ref.rb +1 -1
- data/lib/lazylead/task/echo.rb +1 -1
- data/lib/lazylead/task/fix_version.rb +1 -1
- data/lib/lazylead/task/loading.rb +94 -0
- data/lib/lazylead/task/missing_comment.rb +1 -1
- data/lib/lazylead/task/propagate_down.rb +3 -3
- data/lib/lazylead/task/savepoint.rb +1 -1
- data/lib/lazylead/task/svn/diff.rb +1 -1
- data/lib/lazylead/task/svn/grep.rb +1 -1
- data/lib/lazylead/task/svn/touch.rb +1 -1
- data/lib/lazylead/version.rb +2 -2
- data/lib/messages/accuracy.erb +1 -1
- data/lib/messages/alertif.erb +134 -0
- data/lib/messages/created_recently.erb +110 -0
- data/lib/messages/loading.erb +117 -0
- data/readme.md +3 -3
- data/test/lazylead/allocated_test.rb +1 -1
- data/test/lazylead/cc_test.rb +1 -1
- data/test/lazylead/cli/app_test.rb +2 -2
- data/test/lazylead/confluence_test.rb +1 -1
- data/test/lazylead/exchange_test.rb +1 -1
- data/test/lazylead/model_test.rb +1 -1
- data/test/lazylead/opts_test.rb +1 -1
- data/test/lazylead/postman_test.rb +1 -1
- data/test/lazylead/salt_test.rb +1 -1
- data/test/lazylead/smoke_test.rb +1 -1
- data/test/lazylead/smtp_test.rb +1 -1
- data/test/lazylead/system/jira_test.rb +10 -1
- data/test/lazylead/task/accuracy/accuracy_test.rb +1 -1
- data/test/lazylead/task/accuracy/affected_build_test.rb +1 -1
- data/test/lazylead/task/accuracy/attachment_test.rb +1 -1
- data/test/lazylead/task/accuracy/environment_test.rb +1 -1
- data/test/lazylead/task/accuracy/logs_test.rb +1 -1
- data/test/lazylead/task/accuracy/onlyll_test.rb +1 -1
- data/test/lazylead/task/accuracy/records_test.rb +1 -1
- data/test/lazylead/task/accuracy/score_test.rb +2 -2
- data/test/lazylead/task/accuracy/servers_test.rb +1 -1
- data/test/lazylead/task/accuracy/stacktrace_test.rb +1 -1
- data/test/lazylead/task/accuracy/testcase_test.rb +1 -1
- data/test/lazylead/task/accuracy/wiki_test.rb +1 -1
- data/test/lazylead/task/alert/alertif_test.rb +54 -0
- data/test/lazylead/task/{assignee_alert_test.rb → alert/assignee_alert_test.rb} +10 -10
- data/test/lazylead/task/alert/changed_to_test.rb +42 -0
- data/test/lazylead/task/assignment_test.rb +1 -1
- data/test/lazylead/task/confluence_ref_test.rb +1 -1
- data/test/lazylead/task/created_recently_test.rb +53 -0
- data/test/lazylead/task/duedate_test.rb +2 -2
- data/test/lazylead/task/echo_test.rb +1 -1
- data/test/lazylead/task/fix_version_test.rb +1 -1
- data/test/lazylead/task/loading_test.rb +54 -0
- data/test/lazylead/task/missing_comment_test.rb +1 -1
- data/test/lazylead/task/propagate_down_test.rb +1 -1
- data/test/lazylead/task/savepoint_test.rb +1 -1
- data/test/lazylead/task/svn/diff_test.rb +1 -1
- data/test/lazylead/task/svn/grep_test.rb +1 -1
- data/test/lazylead/task/svn/touch_test.rb +1 -1
- data/test/lazylead/version_test.rb +1 -1
- data/test/sqlite_test.rb +1 -1
- data/test/test.rb +1 -1
- data/upgrades/sqlite/001-install-main-lazylead-tables.sql +1 -1
- data/upgrades/sqlite/999.testdata.sql +1 -1
- metadata +37 -22
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -30,7 +30,7 @@ require_relative "../../../lib/lazylead/schedule"
|
|
30
30
|
require_relative "../../../lib/lazylead/model"
|
31
31
|
require_relative "../../../lib/lazylead/cli/app"
|
32
32
|
require_relative "../../../lib/lazylead/system/jira"
|
33
|
-
require_relative "../../../lib/lazylead/task/alert"
|
33
|
+
require_relative "../../../lib/lazylead/task/alert/alert"
|
34
34
|
|
35
35
|
module Lazylead
|
36
36
|
class DuedateTest < Lazylead::Test
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -0,0 +1,54 @@
|
|
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 "mail"
|
26
|
+
|
27
|
+
require_relative "../../test"
|
28
|
+
require_relative "../../../lib/lazylead/smtp"
|
29
|
+
require_relative "../../../lib/lazylead/opts"
|
30
|
+
require_relative "../../../lib/lazylead/postman"
|
31
|
+
require_relative "../../../lib/lazylead/task/loading"
|
32
|
+
|
33
|
+
module Lazylead
|
34
|
+
class LoadingTest < Lazylead::Test
|
35
|
+
test "notify about team loading" do
|
36
|
+
Lazylead::Smtp.new.enable
|
37
|
+
Task::Loading.new.run(
|
38
|
+
NoAuthJira.new("https://jira.spring.io"),
|
39
|
+
Postman.new,
|
40
|
+
Opts.new(
|
41
|
+
"to" => "lead@company.com",
|
42
|
+
"from" => "ll@company.com",
|
43
|
+
"jql" => "key=STS-3599",
|
44
|
+
"team" => "mclaren:Tom McLaren,milesparker:Mi Pa",
|
45
|
+
"user_link" => "https://user.com?id=",
|
46
|
+
"fields" => "description,assignee,component,priority,summary,duedate",
|
47
|
+
"subject" => "[LL] Team loading",
|
48
|
+
"template" => "lib/messages/loading.erb"
|
49
|
+
)
|
50
|
+
)
|
51
|
+
assert_email "[LL] Team loading", %w[mclaren Tom McLaren 0]
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
data/test/sqlite_test.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
data/test/test.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# The MIT License
|
4
4
|
#
|
5
|
-
# Copyright (c) 2019-
|
5
|
+
# Copyright (c) 2019-2021 Yurii Dubinka
|
6
6
|
#
|
7
7
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
8
|
# of this software and associated documentation files (the "Software"),
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/*
|
2
2
|
* The MIT License
|
3
3
|
*
|
4
|
-
* Copyright (c) 2019-
|
4
|
+
* Copyright (c) 2019-2021 Yurii Dubinka
|
5
5
|
*
|
6
6
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
7
|
* of this software and associated documentation files (the "Software"),
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/*
|
2
2
|
* The MIT License
|
3
3
|
*
|
4
|
-
* Copyright (c) 2019-
|
4
|
+
* Copyright (c) 2019-2021 Yurii Dubinka
|
5
5
|
*
|
6
6
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
7
|
* of this software and associated documentation files (the "Software"),
|
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.8.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-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.1.
|
19
|
+
version: 6.1.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 6.1.
|
26
|
+
version: 6.1.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: backtrace
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -184,14 +184,14 @@ dependencies:
|
|
184
184
|
requirements:
|
185
185
|
- - '='
|
186
186
|
- !ruby/object:Gem::Version
|
187
|
-
version: 6.1.
|
187
|
+
version: 6.1.3
|
188
188
|
type: :runtime
|
189
189
|
prerelease: false
|
190
190
|
version_requirements: !ruby/object:Gem::Requirement
|
191
191
|
requirements:
|
192
192
|
- - '='
|
193
193
|
- !ruby/object:Gem::Version
|
194
|
-
version: 6.1.
|
194
|
+
version: 6.1.3
|
195
195
|
- !ruby/object:Gem::Dependency
|
196
196
|
name: require_all
|
197
197
|
requirement: !ruby/object:Gem::Requirement
|
@@ -324,28 +324,28 @@ dependencies:
|
|
324
324
|
requirements:
|
325
325
|
- - '='
|
326
326
|
- !ruby/object:Gem::Version
|
327
|
-
version: 1.1.
|
327
|
+
version: 1.1.1
|
328
328
|
type: :runtime
|
329
329
|
prerelease: false
|
330
330
|
version_requirements: !ruby/object:Gem::Requirement
|
331
331
|
requirements:
|
332
332
|
- - '='
|
333
333
|
- !ruby/object:Gem::Version
|
334
|
-
version: 1.1.
|
334
|
+
version: 1.1.1
|
335
335
|
- !ruby/object:Gem::Dependency
|
336
336
|
name: codecov
|
337
337
|
requirement: !ruby/object:Gem::Requirement
|
338
338
|
requirements:
|
339
339
|
- - '='
|
340
340
|
- !ruby/object:Gem::Version
|
341
|
-
version: 0.
|
341
|
+
version: 0.5.1
|
342
342
|
type: :development
|
343
343
|
prerelease: false
|
344
344
|
version_requirements: !ruby/object:Gem::Requirement
|
345
345
|
requirements:
|
346
346
|
- - '='
|
347
347
|
- !ruby/object:Gem::Version
|
348
|
-
version: 0.
|
348
|
+
version: 0.5.1
|
349
349
|
- !ruby/object:Gem::Dependency
|
350
350
|
name: guard
|
351
351
|
requirement: !ruby/object:Gem::Requirement
|
@@ -380,14 +380,14 @@ dependencies:
|
|
380
380
|
requirements:
|
381
381
|
- - '='
|
382
382
|
- !ruby/object:Gem::Version
|
383
|
-
version: 5.14.
|
383
|
+
version: 5.14.4
|
384
384
|
type: :development
|
385
385
|
prerelease: false
|
386
386
|
version_requirements: !ruby/object:Gem::Requirement
|
387
387
|
requirements:
|
388
388
|
- - '='
|
389
389
|
- !ruby/object:Gem::Version
|
390
|
-
version: 5.14.
|
390
|
+
version: 5.14.4
|
391
391
|
- !ruby/object:Gem::Dependency
|
392
392
|
name: minitest-fail-fast
|
393
393
|
requirement: !ruby/object:Gem::Requirement
|
@@ -492,14 +492,14 @@ dependencies:
|
|
492
492
|
requirements:
|
493
493
|
- - '='
|
494
494
|
- !ruby/object:Gem::Version
|
495
|
-
version: 1.
|
495
|
+
version: 1.11.0
|
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: 1.
|
502
|
+
version: 1.11.0
|
503
503
|
- !ruby/object:Gem::Dependency
|
504
504
|
name: rubocop-minitest
|
505
505
|
requirement: !ruby/object:Gem::Requirement
|
@@ -520,14 +520,14 @@ dependencies:
|
|
520
520
|
requirements:
|
521
521
|
- - '='
|
522
522
|
- !ruby/object:Gem::Version
|
523
|
-
version: 1.
|
523
|
+
version: 1.10.1
|
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: 1.
|
530
|
+
version: 1.10.1
|
531
531
|
- !ruby/object:Gem::Dependency
|
532
532
|
name: rubocop-rake
|
533
533
|
requirement: !ruby/object:Gem::Requirement
|
@@ -548,14 +548,14 @@ dependencies:
|
|
548
548
|
requirements:
|
549
549
|
- - '='
|
550
550
|
- !ruby/object:Gem::Version
|
551
|
-
version: 2.
|
551
|
+
version: 2.2.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: 2.
|
558
|
+
version: 2.2.0
|
559
559
|
- !ruby/object:Gem::Dependency
|
560
560
|
name: sqlint
|
561
561
|
requirement: !ruby/object:Gem::Requirement
|
@@ -667,6 +667,7 @@ files:
|
|
667
667
|
- lib/lazylead/model.rb
|
668
668
|
- lib/lazylead/opts.rb
|
669
669
|
- lib/lazylead/postman.rb
|
670
|
+
- lib/lazylead/requires.rb
|
670
671
|
- lib/lazylead/salt.rb
|
671
672
|
- lib/lazylead/schedule.rb
|
672
673
|
- lib/lazylead/smtp.rb
|
@@ -686,11 +687,14 @@ files:
|
|
686
687
|
- lib/lazylead/task/accuracy/stacktrace.rb
|
687
688
|
- lib/lazylead/task/accuracy/testcase.rb
|
688
689
|
- lib/lazylead/task/accuracy/wiki.rb
|
689
|
-
- lib/lazylead/task/alert.rb
|
690
|
+
- lib/lazylead/task/alert/alert.rb
|
691
|
+
- lib/lazylead/task/alert/alertif.rb
|
692
|
+
- lib/lazylead/task/alert/changed_to.rb
|
690
693
|
- lib/lazylead/task/assignment.rb
|
691
694
|
- lib/lazylead/task/confluence_ref.rb
|
692
695
|
- lib/lazylead/task/echo.rb
|
693
696
|
- lib/lazylead/task/fix_version.rb
|
697
|
+
- lib/lazylead/task/loading.rb
|
694
698
|
- lib/lazylead/task/missing_comment.rb
|
695
699
|
- lib/lazylead/task/propagate_down.rb
|
696
700
|
- lib/lazylead/task/savepoint.rb
|
@@ -699,9 +703,12 @@ files:
|
|
699
703
|
- lib/lazylead/task/svn/touch.rb
|
700
704
|
- lib/lazylead/version.rb
|
701
705
|
- lib/messages/accuracy.erb
|
706
|
+
- lib/messages/alertif.erb
|
707
|
+
- lib/messages/created_recently.erb
|
702
708
|
- lib/messages/due_date_expired.erb
|
703
709
|
- lib/messages/illegal_assignee_change.erb
|
704
710
|
- lib/messages/illegal_fixversion_change.erb
|
711
|
+
- lib/messages/loading.erb
|
705
712
|
- lib/messages/missing_comment.erb
|
706
713
|
- lib/messages/only_ll.erb
|
707
714
|
- lib/messages/savepoint.erb
|
@@ -735,12 +742,16 @@ files:
|
|
735
742
|
- test/lazylead/task/accuracy/stacktrace_test.rb
|
736
743
|
- test/lazylead/task/accuracy/testcase_test.rb
|
737
744
|
- test/lazylead/task/accuracy/wiki_test.rb
|
738
|
-
- test/lazylead/task/
|
745
|
+
- test/lazylead/task/alert/alertif_test.rb
|
746
|
+
- test/lazylead/task/alert/assignee_alert_test.rb
|
747
|
+
- test/lazylead/task/alert/changed_to_test.rb
|
739
748
|
- test/lazylead/task/assignment_test.rb
|
740
749
|
- test/lazylead/task/confluence_ref_test.rb
|
750
|
+
- test/lazylead/task/created_recently_test.rb
|
741
751
|
- test/lazylead/task/duedate_test.rb
|
742
752
|
- test/lazylead/task/echo_test.rb
|
743
753
|
- test/lazylead/task/fix_version_test.rb
|
754
|
+
- test/lazylead/task/loading_test.rb
|
744
755
|
- test/lazylead/task/missing_comment_test.rb
|
745
756
|
- test/lazylead/task/propagate_down_test.rb
|
746
757
|
- test/lazylead/task/savepoint_test.rb
|
@@ -757,7 +768,7 @@ licenses:
|
|
757
768
|
- MIT
|
758
769
|
metadata: {}
|
759
770
|
post_install_message: |-
|
760
|
-
Thanks for installing Lazylead v0.
|
771
|
+
Thanks for installing Lazylead v0.8.0!
|
761
772
|
Read our blog posts: https://lazylead.org
|
762
773
|
Stay in touch with the community in Telegram: https://t.me/lazylead
|
763
774
|
Follow us on Twitter: https://twitter.com/lazylead
|
@@ -806,12 +817,16 @@ test_files:
|
|
806
817
|
- test/lazylead/task/accuracy/stacktrace_test.rb
|
807
818
|
- test/lazylead/task/accuracy/testcase_test.rb
|
808
819
|
- test/lazylead/task/accuracy/wiki_test.rb
|
809
|
-
- test/lazylead/task/
|
820
|
+
- test/lazylead/task/alert/alertif_test.rb
|
821
|
+
- test/lazylead/task/alert/assignee_alert_test.rb
|
822
|
+
- test/lazylead/task/alert/changed_to_test.rb
|
810
823
|
- test/lazylead/task/assignment_test.rb
|
811
824
|
- test/lazylead/task/confluence_ref_test.rb
|
825
|
+
- test/lazylead/task/created_recently_test.rb
|
812
826
|
- test/lazylead/task/duedate_test.rb
|
813
827
|
- test/lazylead/task/echo_test.rb
|
814
828
|
- test/lazylead/task/fix_version_test.rb
|
829
|
+
- test/lazylead/task/loading_test.rb
|
815
830
|
- test/lazylead/task/missing_comment_test.rb
|
816
831
|
- test/lazylead/task/propagate_down_test.rb
|
817
832
|
- test/lazylead/task/savepoint_test.rb
|