lazylead 0.4.0 → 0.4.1
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/.docs/accuracy.md +2 -2
- data/lazylead.gemspec +2 -2
- data/lib/lazylead/model.rb +1 -1
- data/lib/lazylead/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2663846800ebdda8c479c6eb0e28e5d2833c5336dd329073d6aacfe4e240b08c
|
|
4
|
+
data.tar.gz: 339f5c9b79766315dca39854618ee32d59f37f952ae59850b1f783557b39cd4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fee405d0df6225bc510521fde0ff9b5724bceff4772a9b6d3b0042978a78c3a3c7afed19b977cb3a04c772c7b84f597b88574e164c382b322da45bc2596c4053
|
|
7
|
+
data.tar.gz: 69fd4e858b24aaa52c1e6ac4cfa2f99c6c56e935801764a64e33647367993597ce1e4312811d013b7a2c8c6562dd0dc670aa4f45ff657da81ac47d7c2dc7a68b
|
data/.docs/accuracy.md
CHANGED
|
@@ -73,7 +73,7 @@ For simplicity, we are using [docker-compose](https://docs.docker.com/compose/):
|
|
|
73
73
|
'{
|
|
74
74
|
"jql": "filter=222",
|
|
75
75
|
"to": "lead@fake.com",
|
|
76
|
-
"rules": "Lazylead::
|
|
76
|
+
"rules": "Lazylead::AffectedBuild",
|
|
77
77
|
"colors": "{ "0": "#FF4F33", "35": "#FF9F33", "57": "#19DD1E", "90": "#0FA81A" }",
|
|
78
78
|
"docs": "https://github.com/dgroup/lazylead/blob/master/.github/ISSUE_TEMPLATE/bug_report.md",
|
|
79
79
|
"max_results": "200",
|
|
@@ -104,4 +104,4 @@ For simplicity, we are using [docker-compose](https://docs.docker.com/compose/):
|
|
|
104
104
|
|
|
105
105
|
#### How can I add my own rules?
|
|
106
106
|
The custom rules should extend `Lazylead::Requirement` class and placed it to the `lib/lazylead/task/accuracy` folder.
|
|
107
|
-
After that, you need to mention your custom rules in `rules` option in the column `properties` from `tasks` table
|
|
107
|
+
After that, you need to mention your custom rules in `rules` option in the column `properties` from `tasks` table
|
data/lazylead.gemspec
CHANGED
|
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
s.rubygems_version = "2.2"
|
|
33
33
|
s.required_ruby_version = ">=2.6.5"
|
|
34
34
|
s.name = "lazylead"
|
|
35
|
-
s.version = "0.4.
|
|
35
|
+
s.version = "0.4.1"
|
|
36
36
|
s.license = "MIT"
|
|
37
37
|
s.summary = "Eliminate the annoying work within bug-trackers."
|
|
38
38
|
s.description = "Ticketing systems (Github, Jira, etc.) are strongly
|
|
@@ -45,7 +45,7 @@ tasks instead of solving technical problems."
|
|
|
45
45
|
s.authors = ["Yurii Dubinka"]
|
|
46
46
|
s.email = "yurii.dubinka@gmail.com"
|
|
47
47
|
s.homepage = "http://github.com/dgroup/lazylead"
|
|
48
|
-
s.post_install_message = "Thanks for installing Lazylead v0.4.
|
|
48
|
+
s.post_install_message = "Thanks for installing Lazylead v0.4.1!
|
|
49
49
|
Read our blog posts: https://lazylead.org
|
|
50
50
|
Stay in touch with the community in Telegram: https://t.me/lazylead
|
|
51
51
|
Follow us on Twitter: https://twitter.com/lazylead
|
data/lib/lazylead/model.rb
CHANGED
|
@@ -143,7 +143,7 @@ module Lazylead
|
|
|
143
143
|
@log.debug "'#{name}' is started."
|
|
144
144
|
@log.warn "No postman, stub is used." unless props.key? "postman"
|
|
145
145
|
@log.warn "No team." if team.nil?
|
|
146
|
-
@orig.exec
|
|
146
|
+
@orig.exec
|
|
147
147
|
@log.debug "'#{name}' is completed"
|
|
148
148
|
rescue StandardError => e
|
|
149
149
|
msg = <<~MSG
|
data/lib/lazylead/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.4.1
|
|
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-08-
|
|
11
|
+
date: 2020-08-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -643,7 +643,7 @@ licenses:
|
|
|
643
643
|
- MIT
|
|
644
644
|
metadata: {}
|
|
645
645
|
post_install_message: |-
|
|
646
|
-
Thanks for installing Lazylead v0.4.
|
|
646
|
+
Thanks for installing Lazylead v0.4.1!
|
|
647
647
|
Read our blog posts: https://lazylead.org
|
|
648
648
|
Stay in touch with the community in Telegram: https://t.me/lazylead
|
|
649
649
|
Follow us on Twitter: https://twitter.com/lazylead
|