lazylead 0.7.2 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/.docs/duedate_expired.md +1 -1
  3. data/.rubocop.yml +18 -3
  4. data/Gemfile +1 -1
  5. data/Guardfile +1 -1
  6. data/Rakefile +1 -1
  7. data/bin/lazylead +1 -1
  8. data/lazylead.gemspec +11 -11
  9. data/lib/lazylead.rb +2 -2
  10. data/lib/lazylead/allocated.rb +1 -1
  11. data/lib/lazylead/cc.rb +1 -1
  12. data/lib/lazylead/cli/app.rb +1 -1
  13. data/lib/lazylead/confluence.rb +1 -1
  14. data/lib/lazylead/email.rb +1 -1
  15. data/lib/lazylead/exchange.rb +1 -1
  16. data/lib/lazylead/home.rb +1 -1
  17. data/lib/lazylead/log.rb +1 -1
  18. data/lib/lazylead/model.rb +1 -1
  19. data/lib/lazylead/opts.rb +6 -3
  20. data/lib/lazylead/postman.rb +1 -1
  21. data/lib/lazylead/requires.rb +38 -0
  22. data/lib/lazylead/salt.rb +1 -1
  23. data/lib/lazylead/schedule.rb +1 -1
  24. data/lib/lazylead/smtp.rb +1 -1
  25. data/lib/lazylead/system/empty.rb +1 -1
  26. data/lib/lazylead/system/fake.rb +1 -1
  27. data/lib/lazylead/system/jira.rb +19 -18
  28. data/lib/lazylead/system/synced.rb +1 -1
  29. data/lib/lazylead/task/accuracy/accuracy.rb +15 -18
  30. data/lib/lazylead/task/accuracy/affected_build.rb +1 -1
  31. data/lib/lazylead/task/accuracy/attachment.rb +1 -1
  32. data/lib/lazylead/task/accuracy/environment.rb +1 -1
  33. data/lib/lazylead/task/accuracy/logs.rb +1 -1
  34. data/lib/lazylead/task/accuracy/onlyll.rb +1 -1
  35. data/lib/lazylead/task/accuracy/records.rb +1 -1
  36. data/lib/lazylead/task/accuracy/requirement.rb +1 -1
  37. data/lib/lazylead/task/accuracy/servers.rb +1 -1
  38. data/lib/lazylead/task/accuracy/stacktrace.rb +1 -1
  39. data/lib/lazylead/task/accuracy/testcase.rb +1 -1
  40. data/lib/lazylead/task/accuracy/wiki.rb +1 -1
  41. data/lib/lazylead/task/{alert.rb → alert/alert.rb} +6 -6
  42. data/lib/lazylead/task/alert/alertif.rb +75 -0
  43. data/lib/lazylead/task/alert/changed_to.rb +58 -0
  44. data/lib/lazylead/task/assignment.rb +1 -1
  45. data/lib/lazylead/task/confluence_ref.rb +1 -1
  46. data/lib/lazylead/task/echo.rb +1 -1
  47. data/lib/lazylead/task/fix_version.rb +1 -1
  48. data/lib/lazylead/task/loading.rb +94 -0
  49. data/lib/lazylead/task/missing_comment.rb +1 -1
  50. data/lib/lazylead/task/propagate_down.rb +3 -3
  51. data/lib/lazylead/task/savepoint.rb +1 -1
  52. data/lib/lazylead/task/svn/diff.rb +1 -1
  53. data/lib/lazylead/task/svn/grep.rb +1 -1
  54. data/lib/lazylead/task/svn/touch.rb +1 -1
  55. data/lib/lazylead/version.rb +2 -2
  56. data/lib/messages/accuracy.erb +1 -1
  57. data/lib/messages/alertif.erb +134 -0
  58. data/lib/messages/created_recently.erb +110 -0
  59. data/lib/messages/loading.erb +117 -0
  60. data/readme.md +3 -3
  61. data/test/lazylead/allocated_test.rb +1 -1
  62. data/test/lazylead/cc_test.rb +1 -1
  63. data/test/lazylead/cli/app_test.rb +2 -2
  64. data/test/lazylead/confluence_test.rb +1 -1
  65. data/test/lazylead/exchange_test.rb +1 -1
  66. data/test/lazylead/model_test.rb +1 -1
  67. data/test/lazylead/opts_test.rb +1 -1
  68. data/test/lazylead/postman_test.rb +1 -1
  69. data/test/lazylead/salt_test.rb +1 -1
  70. data/test/lazylead/smoke_test.rb +1 -1
  71. data/test/lazylead/smtp_test.rb +1 -1
  72. data/test/lazylead/system/jira_test.rb +10 -1
  73. data/test/lazylead/task/accuracy/accuracy_test.rb +1 -1
  74. data/test/lazylead/task/accuracy/affected_build_test.rb +1 -1
  75. data/test/lazylead/task/accuracy/attachment_test.rb +1 -1
  76. data/test/lazylead/task/accuracy/environment_test.rb +1 -1
  77. data/test/lazylead/task/accuracy/logs_test.rb +1 -1
  78. data/test/lazylead/task/accuracy/onlyll_test.rb +1 -1
  79. data/test/lazylead/task/accuracy/records_test.rb +1 -1
  80. data/test/lazylead/task/accuracy/score_test.rb +2 -2
  81. data/test/lazylead/task/accuracy/servers_test.rb +1 -1
  82. data/test/lazylead/task/accuracy/stacktrace_test.rb +1 -1
  83. data/test/lazylead/task/accuracy/testcase_test.rb +1 -1
  84. data/test/lazylead/task/accuracy/wiki_test.rb +1 -1
  85. data/test/lazylead/task/alert/alertif_test.rb +54 -0
  86. data/test/lazylead/task/{assignee_alert_test.rb → alert/assignee_alert_test.rb} +10 -10
  87. data/test/lazylead/task/alert/changed_to_test.rb +42 -0
  88. data/test/lazylead/task/assignment_test.rb +1 -1
  89. data/test/lazylead/task/confluence_ref_test.rb +1 -1
  90. data/test/lazylead/task/created_recently_test.rb +53 -0
  91. data/test/lazylead/task/duedate_test.rb +2 -2
  92. data/test/lazylead/task/echo_test.rb +1 -1
  93. data/test/lazylead/task/fix_version_test.rb +1 -1
  94. data/test/lazylead/task/loading_test.rb +54 -0
  95. data/test/lazylead/task/missing_comment_test.rb +1 -1
  96. data/test/lazylead/task/propagate_down_test.rb +1 -1
  97. data/test/lazylead/task/savepoint_test.rb +1 -1
  98. data/test/lazylead/task/svn/diff_test.rb +1 -1
  99. data/test/lazylead/task/svn/grep_test.rb +1 -1
  100. data/test/lazylead/task/svn/touch_test.rb +1 -1
  101. data/test/lazylead/version_test.rb +1 -1
  102. data/test/sqlite_test.rb +1 -1
  103. data/test/test.rb +1 -1
  104. data/upgrades/sqlite/001-install-main-lazylead-tables.sql +1 -1
  105. data/upgrades/sqlite/999.testdata.sql +1 -1
  106. metadata +37 -22
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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-2020 Yurii Dubinka
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.7.2
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-01-27 00:00:00.000000000 Z
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.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.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.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.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.0
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.0
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.4.1
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.4.1
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.3
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.3
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.8.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.8.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.9.2
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.9.2
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.1.0
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.1.0
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/assignee_alert_test.rb
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.7.2!
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/assignee_alert_test.rb
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