lazylead 0.7.2 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/.docker/docker-compose.yml +1 -1
  3. data/.docs/duedate_expired.md +1 -1
  4. data/.rubocop.yml +20 -3
  5. data/Gemfile +1 -1
  6. data/Rakefile +2 -2
  7. data/bin/lazylead +4 -1
  8. data/lazylead.gemspec +15 -14
  9. data/lib/lazylead.rb +2 -2
  10. data/lib/lazylead/allocated.rb +1 -1
  11. data/lib/lazylead/cc.rb +17 -23
  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 +12 -1
  18. data/lib/lazylead/model.rb +6 -8
  19. data/lib/lazylead/opts.rb +6 -3
  20. data/lib/lazylead/postman.rb +1 -1
  21. data/{Guardfile → lib/lazylead/requires.rb} +13 -8
  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 +30 -25
  28. data/lib/lazylead/system/synced.rb +1 -1
  29. data/lib/lazylead/task/accuracy/accuracy.rb +36 -28
  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 +6 -8
  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/screenshots.rb +60 -0
  38. data/lib/lazylead/task/accuracy/servers.rb +1 -1
  39. data/lib/lazylead/task/accuracy/stacktrace.rb +1 -1
  40. data/lib/lazylead/task/accuracy/testcase.rb +1 -1
  41. data/lib/lazylead/task/accuracy/wiki.rb +1 -1
  42. data/lib/lazylead/task/{alert.rb → alert/alert.rb} +6 -6
  43. data/lib/lazylead/task/alert/alertif.rb +75 -0
  44. data/lib/lazylead/task/alert/changed_to.rb +58 -0
  45. data/lib/lazylead/task/assignment.rb +3 -5
  46. data/lib/lazylead/task/confluence_ref.rb +1 -1
  47. data/lib/lazylead/task/echo.rb +1 -1
  48. data/lib/lazylead/task/fix_version.rb +1 -1
  49. data/lib/lazylead/task/loading.rb +98 -0
  50. data/lib/lazylead/task/micromanager.rb +87 -0
  51. data/lib/lazylead/task/missing_comment.rb +1 -1
  52. data/lib/lazylead/task/propagate_down.rb +3 -3
  53. data/lib/lazylead/task/savepoint.rb +1 -1
  54. data/lib/lazylead/task/svn/diff.rb +29 -7
  55. data/lib/lazylead/task/svn/grep.rb +1 -1
  56. data/lib/lazylead/task/svn/touch.rb +1 -1
  57. data/lib/lazylead/version.rb +2 -2
  58. data/lib/messages/accuracy.erb +1 -1
  59. data/lib/messages/alertif.erb +134 -0
  60. data/lib/messages/created_recently.erb +110 -0
  61. data/lib/messages/illegal_duedate_change.erb +120 -0
  62. data/lib/messages/loading.erb +122 -0
  63. data/readme.md +26 -18
  64. data/test/lazylead/allocated_test.rb +1 -1
  65. data/test/lazylead/cc_test.rb +1 -1
  66. data/test/lazylead/cli/app_test.rb +2 -2
  67. data/test/lazylead/confluence_test.rb +1 -1
  68. data/test/lazylead/exchange_test.rb +1 -1
  69. data/test/lazylead/model_test.rb +1 -1
  70. data/test/lazylead/opts_test.rb +1 -1
  71. data/test/lazylead/postman_test.rb +1 -1
  72. data/test/lazylead/salt_test.rb +1 -1
  73. data/test/lazylead/smoke_test.rb +1 -1
  74. data/test/lazylead/smtp_test.rb +1 -1
  75. data/test/lazylead/system/jira_test.rb +10 -1
  76. data/test/lazylead/task/accuracy/accuracy_test.rb +1 -1
  77. data/test/lazylead/task/accuracy/affected_build_test.rb +1 -1
  78. data/test/lazylead/task/accuracy/attachment_test.rb +1 -1
  79. data/test/lazylead/task/accuracy/environment_test.rb +1 -1
  80. data/test/lazylead/task/accuracy/logs_test.rb +1 -1
  81. data/test/lazylead/task/accuracy/onlyll_test.rb +1 -1
  82. data/test/lazylead/task/accuracy/records_test.rb +1 -1
  83. data/test/lazylead/task/accuracy/score_test.rb +40 -2
  84. data/test/lazylead/task/accuracy/screenshots_test.rb +126 -0
  85. data/test/lazylead/task/accuracy/servers_test.rb +1 -1
  86. data/test/lazylead/task/accuracy/stacktrace_test.rb +1 -1
  87. data/test/lazylead/task/accuracy/testcase_test.rb +1 -1
  88. data/test/lazylead/task/accuracy/wiki_test.rb +1 -1
  89. data/test/lazylead/task/alert/alertif_test.rb +54 -0
  90. data/test/lazylead/task/{assignee_alert_test.rb → alert/assignee_alert_test.rb} +10 -10
  91. data/test/lazylead/task/alert/changed_to_test.rb +42 -0
  92. data/test/lazylead/task/assignment_test.rb +1 -1
  93. data/test/lazylead/task/confluence_ref_test.rb +1 -1
  94. data/test/lazylead/task/created_recently_test.rb +53 -0
  95. data/test/lazylead/task/duedate_test.rb +2 -2
  96. data/test/lazylead/task/echo_test.rb +1 -1
  97. data/test/lazylead/task/fix_version_test.rb +1 -1
  98. data/test/lazylead/task/loading_test.rb +55 -0
  99. data/test/lazylead/task/micromanager_test.rb +54 -0
  100. data/test/lazylead/task/missing_comment_test.rb +1 -1
  101. data/test/lazylead/task/propagate_down_test.rb +1 -1
  102. data/test/lazylead/task/savepoint_test.rb +1 -1
  103. data/test/lazylead/task/svn/diff_test.rb +8 -4
  104. data/test/lazylead/task/svn/grep_test.rb +1 -1
  105. data/test/lazylead/task/svn/touch_test.rb +1 -1
  106. data/test/lazylead/version_test.rb +1 -1
  107. data/test/sqlite_test.rb +1 -1
  108. data/test/test.rb +13 -1
  109. data/upgrades/sqlite/001-install-main-lazylead-tables.sql +1 -1
  110. data/upgrades/sqlite/999.testdata.sql +1 -1
  111. metadata +64 -29
@@ -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/micromanager"
32
+
33
+ module Lazylead
34
+ class MicromanagerTest < Lazylead::Test
35
+ test "alert in case duedate changed by not authorized person" do
36
+ Lazylead::Smtp.new.enable
37
+ Task::Micromanager.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 in ('STS-3599','SPR-6541') and duedate is not empty",
44
+ "fields" => "assignee,duedate,priority,created,summary,reporter",
45
+ "allowed" => "tom,mike,bob",
46
+ "subject" => "DD: How dare you?",
47
+ "template" => "lib/messages/illegal_duedate_change.erb"
48
+ )
49
+ )
50
+ assert_email "DD: How dare you?",
51
+ %w[SPR-6541 Major (kdonald) 2009-12-10 Spring's\ Maven\ Central tom,mike,bob]
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"),
@@ -31,6 +31,10 @@ require_relative "../../../../lib/lazylead/task/svn/diff"
31
31
 
32
32
  module Lazylead
33
33
  class DiffTest < Lazylead::Test
34
+ # @todo #/DEV Right now its impossible to check that attachment is present in email as we
35
+ # removing the directory with attachments once SVN::Diff is sent the email through the postman.
36
+ # Think about how to test this case in automatically, because for now we are doing it manually
37
+ # during the development.
34
38
  test "changes since revision" do
35
39
  skip "No svn credentials provided" unless env? "svn_log_user",
36
40
  "svn_log_password"
@@ -53,8 +57,8 @@ module Lazylead
53
57
  "template-attachment" => "lib/messages/svn_diff_attachment.erb"
54
58
  )
55
59
  )
56
- assert_email_line "[SVN] Changed since rev1",
57
- %w[r2 by dgroup at 2020-08-16]
60
+ assert_email_line "[SVN] Changed since rev1", %w[r2 by dgroup at 2020-08-16]
61
+ # assert_attachment "[SVN] Changed since rev1", /^.*svn-log-.*.html.zip$/
58
62
  end
59
63
 
60
64
  test "changes since revision with attachment" do
@@ -68,7 +72,7 @@ module Lazylead
68
72
  "LL_SMTP_TO",
69
73
  "LL_SMTP_FROM"
70
74
  Lazylead::Smtp.new(
71
- Log.new,
75
+ Log.new.verbose,
72
76
  NoSalt.new,
73
77
  smtp_host: ENV["LL_SMTP_HOST"],
74
78
  smtp_port: ENV["LL_SMTP_PORT"],
@@ -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"),
@@ -126,6 +126,18 @@ module Lazylead
126
126
  "Words '#{words.join(',')}' wasn't found in '#{mail.join('\n')}'"
127
127
  end
128
128
 
129
+ def assert_attachment(subject, regexp)
130
+ parts = Mail::TestMailer.deliveries
131
+ .find { |m| m.subject.eql? subject }
132
+ .body.parts.parts
133
+ .select do |p|
134
+ p.header.fields.any? { |f| f.value.start_with? "attachment" }
135
+ end
136
+ refute_empty parts, "No attachments found within the email"
137
+ assert parts.first.header.fields.any? { |f| f.value.match regexp },
138
+ "No attachments found matches to '#{regexp}' in #{subject}"
139
+ end
140
+
129
141
  # Ping remote host
130
142
  # https://github.com/eitoball/net-ping
131
143
  # https://stackoverflow.com/a/35508446/6916890
@@ -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.9.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-04-24 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
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 1.3.0
61
+ version: 1.4.1
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.3.0
68
+ version: 1.4.1
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: get_process_mem
71
71
  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
@@ -206,6 +206,20 @@ dependencies:
206
206
  - - '='
207
207
  - !ruby/object:Gem::Version
208
208
  version: 3.0.0
209
+ - !ruby/object:Gem::Dependency
210
+ name: rubyzip
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - '='
214
+ - !ruby/object:Gem::Version
215
+ version: 2.3.0
216
+ type: :runtime
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - '='
221
+ - !ruby/object:Gem::Version
222
+ version: 2.3.0
209
223
  - !ruby/object:Gem::Dependency
210
224
  name: rufus-scheduler
211
225
  requirement: !ruby/object:Gem::Requirement
@@ -324,28 +338,28 @@ dependencies:
324
338
  requirements:
325
339
  - - '='
326
340
  - !ruby/object:Gem::Version
327
- version: 1.1.0
341
+ version: 1.1.1
328
342
  type: :runtime
329
343
  prerelease: false
330
344
  version_requirements: !ruby/object:Gem::Requirement
331
345
  requirements:
332
346
  - - '='
333
347
  - !ruby/object:Gem::Version
334
- version: 1.1.0
348
+ version: 1.1.1
335
349
  - !ruby/object:Gem::Dependency
336
350
  name: codecov
337
351
  requirement: !ruby/object:Gem::Requirement
338
352
  requirements:
339
353
  - - '='
340
354
  - !ruby/object:Gem::Version
341
- version: 0.4.1
355
+ version: 0.5.1
342
356
  type: :development
343
357
  prerelease: false
344
358
  version_requirements: !ruby/object:Gem::Requirement
345
359
  requirements:
346
360
  - - '='
347
361
  - !ruby/object:Gem::Version
348
- version: 0.4.1
362
+ version: 0.5.1
349
363
  - !ruby/object:Gem::Dependency
350
364
  name: guard
351
365
  requirement: !ruby/object:Gem::Requirement
@@ -380,14 +394,14 @@ dependencies:
380
394
  requirements:
381
395
  - - '='
382
396
  - !ruby/object:Gem::Version
383
- version: 5.14.3
397
+ version: 5.14.4
384
398
  type: :development
385
399
  prerelease: false
386
400
  version_requirements: !ruby/object:Gem::Requirement
387
401
  requirements:
388
402
  - - '='
389
403
  - !ruby/object:Gem::Version
390
- version: 5.14.3
404
+ version: 5.14.4
391
405
  - !ruby/object:Gem::Dependency
392
406
  name: minitest-fail-fast
393
407
  requirement: !ruby/object:Gem::Requirement
@@ -492,42 +506,42 @@ dependencies:
492
506
  requirements:
493
507
  - - '='
494
508
  - !ruby/object:Gem::Version
495
- version: 1.8.1
509
+ version: 1.13.0
496
510
  type: :development
497
511
  prerelease: false
498
512
  version_requirements: !ruby/object:Gem::Requirement
499
513
  requirements:
500
514
  - - '='
501
515
  - !ruby/object:Gem::Version
502
- version: 1.8.1
516
+ version: 1.13.0
503
517
  - !ruby/object:Gem::Dependency
504
518
  name: rubocop-minitest
505
519
  requirement: !ruby/object:Gem::Requirement
506
520
  requirements:
507
521
  - - '='
508
522
  - !ruby/object:Gem::Version
509
- version: 0.10.3
523
+ version: 0.11.1
510
524
  type: :development
511
525
  prerelease: false
512
526
  version_requirements: !ruby/object:Gem::Requirement
513
527
  requirements:
514
528
  - - '='
515
529
  - !ruby/object:Gem::Version
516
- version: 0.10.3
530
+ version: 0.11.1
517
531
  - !ruby/object:Gem::Dependency
518
532
  name: rubocop-performance
519
533
  requirement: !ruby/object:Gem::Requirement
520
534
  requirements:
521
535
  - - '='
522
536
  - !ruby/object:Gem::Version
523
- version: 1.9.2
537
+ version: 1.11.0
524
538
  type: :development
525
539
  prerelease: false
526
540
  version_requirements: !ruby/object:Gem::Requirement
527
541
  requirements:
528
542
  - - '='
529
543
  - !ruby/object:Gem::Version
530
- version: 1.9.2
544
+ version: 1.11.0
531
545
  - !ruby/object:Gem::Dependency
532
546
  name: rubocop-rake
533
547
  requirement: !ruby/object:Gem::Requirement
@@ -548,28 +562,28 @@ dependencies:
548
562
  requirements:
549
563
  - - '='
550
564
  - !ruby/object:Gem::Version
551
- version: 2.1.0
565
+ version: 2.2.0
552
566
  type: :development
553
567
  prerelease: false
554
568
  version_requirements: !ruby/object:Gem::Requirement
555
569
  requirements:
556
570
  - - '='
557
571
  - !ruby/object:Gem::Version
558
- version: 2.1.0
572
+ version: 2.2.0
559
573
  - !ruby/object:Gem::Dependency
560
574
  name: sqlint
561
575
  requirement: !ruby/object:Gem::Requirement
562
576
  requirements:
563
577
  - - '='
564
578
  - !ruby/object:Gem::Version
565
- version: 0.1.10
579
+ version: 0.2.0
566
580
  type: :development
567
581
  prerelease: false
568
582
  version_requirements: !ruby/object:Gem::Requirement
569
583
  requirements:
570
584
  - - '='
571
585
  - !ruby/object:Gem::Version
572
- version: 0.1.10
586
+ version: 0.2.0
573
587
  - !ruby/object:Gem::Dependency
574
588
  name: tempfile
575
589
  requirement: !ruby/object:Gem::Requirement
@@ -648,7 +662,6 @@ files:
648
662
  - ".simplecov"
649
663
  - CNAME
650
664
  - Gemfile
651
- - Guardfile
652
665
  - Rakefile
653
666
  - appveyor.yml
654
667
  - bin/.ruby-version
@@ -667,6 +680,7 @@ files:
667
680
  - lib/lazylead/model.rb
668
681
  - lib/lazylead/opts.rb
669
682
  - lib/lazylead/postman.rb
683
+ - lib/lazylead/requires.rb
670
684
  - lib/lazylead/salt.rb
671
685
  - lib/lazylead/schedule.rb
672
686
  - lib/lazylead/smtp.rb
@@ -682,15 +696,20 @@ files:
682
696
  - lib/lazylead/task/accuracy/onlyll.rb
683
697
  - lib/lazylead/task/accuracy/records.rb
684
698
  - lib/lazylead/task/accuracy/requirement.rb
699
+ - lib/lazylead/task/accuracy/screenshots.rb
685
700
  - lib/lazylead/task/accuracy/servers.rb
686
701
  - lib/lazylead/task/accuracy/stacktrace.rb
687
702
  - lib/lazylead/task/accuracy/testcase.rb
688
703
  - lib/lazylead/task/accuracy/wiki.rb
689
- - lib/lazylead/task/alert.rb
704
+ - lib/lazylead/task/alert/alert.rb
705
+ - lib/lazylead/task/alert/alertif.rb
706
+ - lib/lazylead/task/alert/changed_to.rb
690
707
  - lib/lazylead/task/assignment.rb
691
708
  - lib/lazylead/task/confluence_ref.rb
692
709
  - lib/lazylead/task/echo.rb
693
710
  - lib/lazylead/task/fix_version.rb
711
+ - lib/lazylead/task/loading.rb
712
+ - lib/lazylead/task/micromanager.rb
694
713
  - lib/lazylead/task/missing_comment.rb
695
714
  - lib/lazylead/task/propagate_down.rb
696
715
  - lib/lazylead/task/savepoint.rb
@@ -699,9 +718,13 @@ files:
699
718
  - lib/lazylead/task/svn/touch.rb
700
719
  - lib/lazylead/version.rb
701
720
  - lib/messages/accuracy.erb
721
+ - lib/messages/alertif.erb
722
+ - lib/messages/created_recently.erb
702
723
  - lib/messages/due_date_expired.erb
703
724
  - lib/messages/illegal_assignee_change.erb
725
+ - lib/messages/illegal_duedate_change.erb
704
726
  - lib/messages/illegal_fixversion_change.erb
727
+ - lib/messages/loading.erb
705
728
  - lib/messages/missing_comment.erb
706
729
  - lib/messages/only_ll.erb
707
730
  - lib/messages/savepoint.erb
@@ -731,16 +754,22 @@ files:
731
754
  - test/lazylead/task/accuracy/onlyll_test.rb
732
755
  - test/lazylead/task/accuracy/records_test.rb
733
756
  - test/lazylead/task/accuracy/score_test.rb
757
+ - test/lazylead/task/accuracy/screenshots_test.rb
734
758
  - test/lazylead/task/accuracy/servers_test.rb
735
759
  - test/lazylead/task/accuracy/stacktrace_test.rb
736
760
  - test/lazylead/task/accuracy/testcase_test.rb
737
761
  - test/lazylead/task/accuracy/wiki_test.rb
738
- - test/lazylead/task/assignee_alert_test.rb
762
+ - test/lazylead/task/alert/alertif_test.rb
763
+ - test/lazylead/task/alert/assignee_alert_test.rb
764
+ - test/lazylead/task/alert/changed_to_test.rb
739
765
  - test/lazylead/task/assignment_test.rb
740
766
  - test/lazylead/task/confluence_ref_test.rb
767
+ - test/lazylead/task/created_recently_test.rb
741
768
  - test/lazylead/task/duedate_test.rb
742
769
  - test/lazylead/task/echo_test.rb
743
770
  - test/lazylead/task/fix_version_test.rb
771
+ - test/lazylead/task/loading_test.rb
772
+ - test/lazylead/task/micromanager_test.rb
744
773
  - test/lazylead/task/missing_comment_test.rb
745
774
  - test/lazylead/task/propagate_down_test.rb
746
775
  - test/lazylead/task/savepoint_test.rb
@@ -757,7 +786,7 @@ licenses:
757
786
  - MIT
758
787
  metadata: {}
759
788
  post_install_message: |-
760
- Thanks for installing Lazylead v0.7.2!
789
+ Thanks for installing Lazylead v0.9.0!
761
790
  Read our blog posts: https://lazylead.org
762
791
  Stay in touch with the community in Telegram: https://t.me/lazylead
763
792
  Follow us on Twitter: https://twitter.com/lazylead
@@ -802,16 +831,22 @@ test_files:
802
831
  - test/lazylead/task/accuracy/onlyll_test.rb
803
832
  - test/lazylead/task/accuracy/records_test.rb
804
833
  - test/lazylead/task/accuracy/score_test.rb
834
+ - test/lazylead/task/accuracy/screenshots_test.rb
805
835
  - test/lazylead/task/accuracy/servers_test.rb
806
836
  - test/lazylead/task/accuracy/stacktrace_test.rb
807
837
  - test/lazylead/task/accuracy/testcase_test.rb
808
838
  - test/lazylead/task/accuracy/wiki_test.rb
809
- - test/lazylead/task/assignee_alert_test.rb
839
+ - test/lazylead/task/alert/alertif_test.rb
840
+ - test/lazylead/task/alert/assignee_alert_test.rb
841
+ - test/lazylead/task/alert/changed_to_test.rb
810
842
  - test/lazylead/task/assignment_test.rb
811
843
  - test/lazylead/task/confluence_ref_test.rb
844
+ - test/lazylead/task/created_recently_test.rb
812
845
  - test/lazylead/task/duedate_test.rb
813
846
  - test/lazylead/task/echo_test.rb
814
847
  - test/lazylead/task/fix_version_test.rb
848
+ - test/lazylead/task/loading_test.rb
849
+ - test/lazylead/task/micromanager_test.rb
815
850
  - test/lazylead/task/missing_comment_test.rb
816
851
  - test/lazylead/task/propagate_down_test.rb
817
852
  - test/lazylead/task/savepoint_test.rb