lazylead 0.9.2 → 0.10.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/Rakefile +1 -2
  4. data/lazylead.gemspec +14 -14
  5. data/lib/lazylead/confluence.rb +1 -2
  6. data/lib/lazylead/os.rb +55 -0
  7. data/lib/lazylead/task/accuracy/accuracy.rb +2 -3
  8. data/lib/lazylead/task/accuracy/attachment.rb +1 -0
  9. data/lib/lazylead/task/accuracy/environment.rb +3 -8
  10. data/lib/lazylead/task/accuracy/logs_link.rb +55 -0
  11. data/lib/lazylead/task/accuracy/records.rb +1 -1
  12. data/lib/lazylead/task/accuracy/required.rb +42 -0
  13. data/lib/lazylead/task/accuracy/screenshots.rb +5 -6
  14. data/lib/lazylead/task/accuracy/servers.rb +7 -7
  15. data/lib/lazylead/task/accuracy/testcase.rb +27 -20
  16. data/lib/lazylead/task/fix_version.rb +5 -8
  17. data/lib/lazylead/task/loading.rb +2 -2
  18. data/lib/lazylead/task/svn/diff.rb +9 -9
  19. data/lib/lazylead/task/svn/grep.rb +8 -71
  20. data/lib/lazylead/task/svn/svn.rb +107 -0
  21. data/lib/lazylead/task/svn/touch.rb +5 -7
  22. data/lib/lazylead/version.rb +1 -1
  23. data/lib/messages/illegal_assignee_change.erb +1 -2
  24. data/lib/messages/loading.erb +1 -1
  25. data/lib/messages/svn_diff.erb +29 -29
  26. data/lib/messages/svn_diff_attachment.erb +5 -7
  27. data/lib/messages/svn_grep.erb +34 -32
  28. data/readme.md +4 -3
  29. data/test/lazylead/system/jira_test.rb +8 -0
  30. data/test/lazylead/task/accuracy/accuracy_test.rb +1 -1
  31. data/test/lazylead/task/accuracy/logs_link_test.rb +50 -0
  32. data/test/lazylead/task/accuracy/onlyll_test.rb +1 -1
  33. data/test/lazylead/task/accuracy/screenshots_test.rb +2 -4
  34. data/test/lazylead/task/accuracy/testcase_test.rb +16 -0
  35. data/test/lazylead/task/alert/alertif_test.rb +2 -1
  36. data/test/lazylead/task/assignment_test.rb +2 -1
  37. data/test/lazylead/task/created_recently_test.rb +2 -1
  38. data/test/lazylead/task/duedate_test.rb +2 -2
  39. data/test/lazylead/task/fix_version_test.rb +2 -1
  40. data/test/lazylead/task/loading_test.rb +5 -2
  41. data/test/lazylead/task/micromanager_test.rb +1 -1
  42. data/test/lazylead/task/missing_comment_test.rb +1 -1
  43. data/test/lazylead/task/svn/diff_test.rb +1 -1
  44. data/test/lazylead/task/svn/grep_test.rb +2 -1
  45. data/test/test.rb +4 -3
  46. metadata +33 -27
data/readme.md CHANGED
@@ -175,11 +175,12 @@ For simplicity, we are using [docker-compose](https://docs.docker.com/compose/):
175
175
  ```
176
176
 
177
177
  ### How to contribute?
178
- [![EO badge](http://www.elegantobjects.org/badge.svg)](http://www.elegantobjects.org/#principles)
179
178
 
180
- Pull requests are welcome! Don't forget to add your name to contribution section and run this, beforehand:
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
+
181
+ [Pull requests](http://www.elegantobjects.org/#principles) are welcome! Don't forget to add your name to contribution section and run this, beforehand:
181
182
  ```ruby
182
- bundle exec rake
183
+ rake -A
183
184
  ```
184
185
  Everyone interacting in this project’s codebases, issue trackers, chat rooms is expected to follow the [code of conduct](.github/CODE_OF_CONDUCT.md).
185
186
 
@@ -194,5 +194,13 @@ module Lazylead
194
194
  "context_path" => ""
195
195
  ).issues("key=DATAJDBC-480")
196
196
  end
197
+
198
+ test "sprint is found" do
199
+ assert_equal "Sprint 68",
200
+ NoAuthJira.new("https://jira.spring.io")
201
+ .issues("key=XD-3744", fields: ["customfield_10480"])
202
+ .first
203
+ .sprint("customfield_10480")
204
+ end
197
205
  end
198
206
  end
@@ -56,7 +56,7 @@ module Lazylead
56
56
  )
57
57
  )
58
58
  assert_email "[LL] Raised tickets",
59
- %w[DATAJDBC-493 0.5 100% MyeongHyeonLee Deadlock\ occurs]
59
+ "DATAJDBC-493", "0.5", "100%", "MyeongHyeonLee", "Deadlock occurs"
60
60
  end
61
61
 
62
62
  test "construct accuracy from orm" do
@@ -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
@@ -69,7 +69,7 @@ module Lazylead
69
69
  )
70
70
  )
71
71
  assert_email "[LL] Only",
72
- %w[XD-3725 Blocker EmbeddedHeadersMessageConverter]
72
+ "XD-3725", "Blocker", "EmbeddedHeadersMessageConverter"
73
73
  end
74
74
 
75
75
  test "detect score" do
@@ -65,12 +65,10 @@ module Lazylead
65
65
  end
66
66
 
67
67
  test "issue has two .png files with reference in description but with extension mismatch" do
68
- refute Screenshots.new.passed(
68
+ refute Screenshots.new(minimum: 2).passed(
69
69
  OpenStruct.new(
70
70
  description: "Hi,\n here are snapshots !img1.jpg|thumbnail!\n!img2.jpg|thumbnail!\n",
71
- fields: {
72
- "description" => "Hi,\n here are snapshots !img1.jpg|thumbnail!\n!img2.jpg|thumbnail!\n"
73
- },
71
+ fields: { "description" => "-" },
74
72
  attachments: [
75
73
  OpenStruct.new("filename" => "img1.JPG"),
76
74
  OpenStruct.new("filename" => "img2.jpg")
@@ -291,6 +291,22 @@ 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
+
303
+ test "TC with h3" do
304
+ assert testcase? "h3. Steps: Start updating
305
+ h3. ER: updating failed
306
+ h3. AR: updating should be passed
307
+ h3. Screenshots: !r37.png|thumbnail!"
308
+ end
309
+
294
310
  # ensure that issue description has a test case, AR and ER
295
311
  def testcase?(desc)
296
312
  Testcase.new.passed(OpenStruct.new(description: desc))
@@ -48,7 +48,8 @@ module Lazylead
48
48
  "template" => "lib/messages/alertif.erb"
49
49
  )
50
50
  )
51
- assert_email "[LL] alert if", %w[XD-3064 Critical Done Glenn Risberg HdfsMongoDB]
51
+ assert_email "[LL] alert if",
52
+ "XD-3064", "Critical", "Done", "Glenn Renfro", "Thomas Risberg", "HdfsMongoDB"
52
53
  end
53
54
  end
54
55
  end
@@ -47,7 +47,8 @@ module Lazylead
47
47
  )
48
48
  )
49
49
  assert_email "Assignment: How dare you?",
50
- %w[DATAJDBC-480 01-Apr-2020 Minor Mark\ Paluch tom,mike,bob EntityInstantiators]
50
+ "DATAJDBC-480", "01-Apr", "Minor", "Mark Paluch", "tom,mike,bob",
51
+ "EntityInstantiators"
51
52
  end
52
53
  end
53
54
  end
@@ -47,7 +47,8 @@ module Lazylead
47
47
  "template" => "lib/messages/created_recently.erb"
48
48
  )
49
49
  )
50
- assert_email "[CR] 20min ago!", %w[XD-3766 SGF-726]
50
+ assert_email "[CR] 20min ago!",
51
+ "XD-3766", "SGF-726"
51
52
  end
52
53
  end
53
54
  end
@@ -82,7 +82,7 @@ module Lazylead
82
82
  )
83
83
  )
84
84
  assert_email "[DD] HMCHT!",
85
- %w[STS-3599 2013-11-08 Major Miles\ Parker Use JavaFX WebView]
85
+ "STS-3599", "2013-11-08", "Major", "Miles Parker", "Use JavaFX WebView"
86
86
  end
87
87
 
88
88
  test "send notification about bunch of tickets" do
@@ -100,7 +100,7 @@ module Lazylead
100
100
  )
101
101
  )
102
102
  assert_email "ALRT: Frozen",
103
- %w[Hi Boss STS-3599 2013-11-08 Major Miles\ Parker Use JavaFX WebView]
103
+ "Hi Boss", "STS-3599", "2013-11-08", "Major", "Miles Parker", "Use JavaFX WebView"
104
104
  end
105
105
 
106
106
  test "cc got notification" do
@@ -48,7 +48,8 @@ module Lazylead
48
48
  )
49
49
  )
50
50
  assert_email "FixVersion: How dare you?",
51
- %w[DATAJDBC-480 01-Apr-2020 Minor Mark\ Paluch tom,mike,bob EntityInstantiators]
51
+ "DATAJDBC-480", "01-Apr-2020", "Minor", "Mark Paluch", "tom,mike,bob",
52
+ "EntityInstantiators"
52
53
  end
53
54
  end
54
55
  end
@@ -41,7 +41,7 @@ module Lazylead
41
41
  "to" => "lead@company.com",
42
42
  "from" => "ll@company.com",
43
43
  "jql" => "key in (STS-3599, XD-3739, XD-3744)",
44
- "team" => "mclaren:Tom McLaren,milesparker:Mi Pa",
44
+ "team" => "mclaren:Tom McLaren,milesparker:Mi Pa,grussell:Gary Ru",
45
45
  "user_link" => "https://user.com?id=",
46
46
  "search_link" => "https://jira.spring.io/issues/?jql=",
47
47
  "fields" => "assignee,duedate,customfield_10480",
@@ -50,7 +50,10 @@ module Lazylead
50
50
  "template" => "lib/messages/loading.erb"
51
51
  )
52
52
  )
53
- assert_email "[LL] Team loading", %w[mclaren Tom McLaren 0]
53
+ assert_email "[LL] Team loading",
54
+ "grussell", "Gary Ru", "Sprint 68", "1",
55
+ "Miles Parker", "No sprint: 1", "2013-11-08",
56
+ "Tom McLaren", "0"
54
57
  end
55
58
  end
56
59
  end
@@ -50,7 +50,7 @@ module Lazylead
50
50
  )
51
51
  )
52
52
  assert_email "DD: How dare you?",
53
- %w[SPR-6541 Major (kdonald) 2009-12-10 Spring's\ Maven\ Central tom,mike,bob]
53
+ "SPR-6541", "Major", "(kdonald)", "2009-12-10", "Spring's Maven Central", "tom,mike,bob"
54
54
  end
55
55
 
56
56
  test "since for past 1 min" do
@@ -50,7 +50,7 @@ module Lazylead
50
50
  )
51
51
  )
52
52
  assert_email "Expected ftp link is missing",
53
- %w[DATAJDBC-523 Major Mark\ Paluch https://github.com/spring-projects/spring-data-jdbc/commit/aadbb667ed1d61139d5ac51a06eb3dd1b39316db#diff-510a5041bb8a0575e97fedf105606b83R130]
53
+ "DATAJDBC-523", "Major", "Mark Paluch", "https://github.com/spring-projects/spring-data-jdbc/commit/aadbb667ed1d61139d5ac51a06eb3dd1b39316db#diff-510a5041bb8a0575e97fedf105606b83R130"
54
54
  end
55
55
  end
56
56
  end
@@ -57,7 +57,7 @@ module Lazylead
57
57
  "template-attachment" => "lib/messages/svn_diff_attachment.erb"
58
58
  )
59
59
  )
60
- assert_email_line "[SVN] Changed since rev1", %w[r2 by dgroup at 2020-08-16]
60
+ assert_email_line "[SVN] Changed since rev1", %w[r2 by dgroup at 16-08-2020]
61
61
  # assert_attachment "[SVN] Changed since rev1", /^.*svn-log-.*.html.zip$/
62
62
  end
63
63
 
@@ -28,6 +28,7 @@ require_relative "../../../../lib/lazylead/smtp"
28
28
  require_relative "../../../../lib/lazylead/opts"
29
29
  require_relative "../../../../lib/lazylead/postman"
30
30
  require_relative "../../../../lib/lazylead/task/svn/grep"
31
+ require_relative "../../../../lib/lazylead/task/svn/svn"
31
32
 
32
33
  module Lazylead
33
34
  class GrepTest < Lazylead::Test
@@ -96,7 +97,7 @@ module Lazylead
96
97
 
97
98
 
98
99
  MSG
99
- assert_equal 15, Entry.new(diff).diff(%w[ping]).size,
100
+ assert_equal 15, Lazylead::Svn::Commit.new(diff).diff(%w[ping]).size,
100
101
  "There is one commit with 'ping' word where diff has 14 lines"
101
102
  end
102
103
  end
data/test/test.rb CHANGED
@@ -79,9 +79,9 @@ module Lazylead
79
79
  end
80
80
 
81
81
  # Assert that text contains expected words
82
- def assert_words(words, text)
82
+ def assert_words(*words, text)
83
83
  words = [words] unless words.respond_to? :each
84
- words.each do |w|
84
+ words.first.each do |w|
85
85
  assert_includes text, w
86
86
  end
87
87
  end
@@ -103,7 +103,8 @@ module Lazylead
103
103
 
104
104
  # Assert that email sent using 'mail' gem in test mode
105
105
  # has expected subject and words
106
- def assert_email(subject, words)
106
+ def assert_email(subject, *words)
107
+ refute_empty words, "No words provided to match"
107
108
  email = Mail::TestMailer.deliveries
108
109
  .find { |m| m.subject.eql? subject }
109
110
  refute_nil email, "No email found with subject: #{subject}"
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.9.2
4
+ version: 0.10.2
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-05-04 00:00:00.000000000 Z
11
+ date: 2021-07-22 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.4.1
61
+ version: 1.5.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.4.1
68
+ version: 1.5.1
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: get_process_mem
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -212,42 +212,42 @@ dependencies:
212
212
  requirements:
213
213
  - - '='
214
214
  - !ruby/object:Gem::Version
215
- version: 2.3.0
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.0
222
+ version: 2.3.2
223
223
  - !ruby/object:Gem::Dependency
224
224
  name: rufus-scheduler
225
225
  requirement: !ruby/object:Gem::Requirement
226
226
  requirements:
227
227
  - - '='
228
228
  - !ruby/object:Gem::Version
229
- version: 3.7.0
229
+ version: 3.8.0
230
230
  type: :runtime
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
233
  requirements:
234
234
  - - '='
235
235
  - !ruby/object:Gem::Version
236
- version: 3.7.0
236
+ version: 3.8.0
237
237
  - !ruby/object:Gem::Dependency
238
238
  name: slop
239
239
  requirement: !ruby/object:Gem::Requirement
240
240
  requirements:
241
241
  - - '='
242
242
  - !ruby/object:Gem::Version
243
- version: 4.8.2
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.8.2
250
+ version: 4.9.1
251
251
  - !ruby/object:Gem::Dependency
252
252
  name: sqlite3
253
253
  requirement: !ruby/object:Gem::Requirement
@@ -366,14 +366,14 @@ dependencies:
366
366
  requirements:
367
367
  - - '='
368
368
  - !ruby/object:Gem::Version
369
- version: 2.16.2
369
+ version: 2.18.0
370
370
  type: :development
371
371
  prerelease: false
372
372
  version_requirements: !ruby/object:Gem::Requirement
373
373
  requirements:
374
374
  - - '='
375
375
  - !ruby/object:Gem::Version
376
- version: 2.16.2
376
+ version: 2.18.0
377
377
  - !ruby/object:Gem::Dependency
378
378
  name: guard-minitest
379
379
  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.3
467
+ version: 13.0.6
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.3
474
+ version: 13.0.6
475
475
  - !ruby/object:Gem::Dependency
476
476
  name: random-port
477
477
  requirement: !ruby/object:Gem::Requirement
@@ -492,84 +492,84 @@ dependencies:
492
492
  requirements:
493
493
  - - '='
494
494
  - !ruby/object:Gem::Version
495
- version: 6.3.1
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.1
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.13.0
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.13.0
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.12.1
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.12.1
530
+ version: 0.14.0
531
531
  - !ruby/object:Gem::Dependency
532
532
  name: rubocop-performance
533
533
  requirement: !ruby/object:Gem::Requirement
534
534
  requirements:
535
535
  - - '='
536
536
  - !ruby/object:Gem::Version
537
- version: 1.11.1
537
+ version: 1.11.4
538
538
  type: :development
539
539
  prerelease: false
540
540
  version_requirements: !ruby/object:Gem::Requirement
541
541
  requirements:
542
542
  - - '='
543
543
  - !ruby/object:Gem::Version
544
- version: 1.11.1
544
+ version: 1.11.4
545
545
  - !ruby/object:Gem::Dependency
546
546
  name: rubocop-rake
547
547
  requirement: !ruby/object:Gem::Requirement
548
548
  requirements:
549
549
  - - '='
550
550
  - !ruby/object:Gem::Version
551
- version: 0.5.1
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.5.1
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.3.0
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.3.0
572
+ version: 2.4.0
573
573
  - !ruby/object:Gem::Dependency
574
574
  name: sqlint
575
575
  requirement: !ruby/object:Gem::Requirement
@@ -679,6 +679,7 @@ files:
679
679
  - lib/lazylead/log.rb
680
680
  - lib/lazylead/model.rb
681
681
  - lib/lazylead/opts.rb
682
+ - lib/lazylead/os.rb
682
683
  - lib/lazylead/postman.rb
683
684
  - lib/lazylead/requires.rb
684
685
  - lib/lazylead/salt.rb
@@ -693,8 +694,10 @@ files:
693
694
  - lib/lazylead/task/accuracy/attachment.rb
694
695
  - lib/lazylead/task/accuracy/environment.rb
695
696
  - lib/lazylead/task/accuracy/logs.rb
697
+ - lib/lazylead/task/accuracy/logs_link.rb
696
698
  - lib/lazylead/task/accuracy/onlyll.rb
697
699
  - lib/lazylead/task/accuracy/records.rb
700
+ - lib/lazylead/task/accuracy/required.rb
698
701
  - lib/lazylead/task/accuracy/requirement.rb
699
702
  - lib/lazylead/task/accuracy/screenshots.rb
700
703
  - lib/lazylead/task/accuracy/servers.rb
@@ -715,6 +718,7 @@ files:
715
718
  - lib/lazylead/task/savepoint.rb
716
719
  - lib/lazylead/task/svn/diff.rb
717
720
  - lib/lazylead/task/svn/grep.rb
721
+ - lib/lazylead/task/svn/svn.rb
718
722
  - lib/lazylead/task/svn/touch.rb
719
723
  - lib/lazylead/version.rb
720
724
  - lib/messages/accuracy.erb
@@ -750,6 +754,7 @@ files:
750
754
  - test/lazylead/task/accuracy/affected_build_test.rb
751
755
  - test/lazylead/task/accuracy/attachment_test.rb
752
756
  - test/lazylead/task/accuracy/environment_test.rb
757
+ - test/lazylead/task/accuracy/logs_link_test.rb
753
758
  - test/lazylead/task/accuracy/logs_test.rb
754
759
  - test/lazylead/task/accuracy/onlyll_test.rb
755
760
  - test/lazylead/task/accuracy/records_test.rb
@@ -786,7 +791,7 @@ licenses:
786
791
  - MIT
787
792
  metadata: {}
788
793
  post_install_message: |-
789
- Thanks for installing Lazylead v0.9.2!
794
+ Thanks for installing Lazylead v0.10.2!
790
795
  Read our blog posts: https://lazylead.org
791
796
  Stay in touch with the community in Telegram: https://t.me/lazylead
792
797
  Follow us on Twitter: https://twitter.com/lazylead
@@ -827,6 +832,7 @@ test_files:
827
832
  - test/lazylead/task/accuracy/affected_build_test.rb
828
833
  - test/lazylead/task/accuracy/attachment_test.rb
829
834
  - test/lazylead/task/accuracy/environment_test.rb
835
+ - test/lazylead/task/accuracy/logs_link_test.rb
830
836
  - test/lazylead/task/accuracy/logs_test.rb
831
837
  - test/lazylead/task/accuracy/onlyll_test.rb
832
838
  - test/lazylead/task/accuracy/records_test.rb