CiHelper 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ci_helper/issue_monitor.rb +2 -2
- data/lib/ci_helper/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f1a0d0aed30ce0f39002152316dcd3f3f93dbfe
|
4
|
+
data.tar.gz: e14503c7d12d6ad1418ff83873c79b47ba79d74f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3ec1c0fc6dd59b9f83448436bc749ff3b9c62d1f4d9955951c123696cf4033c7865eb9682d947189d70319a7a7b86106853245b3a31a5527ebe3e9c1456e7b5
|
7
|
+
data.tar.gz: cf9a2afe87294a800bde2130910983bed27714a03258b3c765c50b1d28c5cb083e7c473a0283d424759d8463614fa6d2c2eec73cb8a9df0c21092031ad8738a6
|
@@ -19,7 +19,7 @@ class IssueMonitor
|
|
19
19
|
end
|
20
20
|
true
|
21
21
|
rescue CiHelper::Exceptions::IssueNotFound => e
|
22
|
-
puts "#{e.message} #{
|
22
|
+
puts "#{e.message} #{ci_procedure.matching_strategy}"
|
23
23
|
false
|
24
24
|
end
|
25
25
|
end
|
@@ -34,7 +34,7 @@ class IssueMonitor
|
|
34
34
|
output = ci_procedure.re_get_console_output
|
35
35
|
output.empty? ? false : true
|
36
36
|
rescue CiHelper::Exception::IssueNotFound => e
|
37
|
-
puts "#{e.message} #{
|
37
|
+
puts "#{e.message} #{ci_procedure.matching_strategy}"
|
38
38
|
false
|
39
39
|
end
|
40
40
|
end
|
data/lib/ci_helper/version.rb
CHANGED