CiHelper 1.0.4 → 1.0.5
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/ci_procedure.rb +2 -1
- 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: f92f203c54f986ab60df0148d0459d18482b03fc
|
4
|
+
data.tar.gz: c03a088a39ab2f96e05bcb6bdfecd51408af2c67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 254878105aee1bde17bf7da9602144ce42bd848cd33fea1b5ba9f3a232f7de534a79a2119958e2b463fc8ff48728eb7ffeec5bd6413012612ad51bf68e7d703a
|
7
|
+
data.tar.gz: 8419580f0769b7482739dbb4c3db412814a17675a8df39f1f97ad7d4fe5143f7cbf88be58a6ca8e0258b4060fd89547ed6d085c7cf9ea5ce7f31d7208ba4f048
|
@@ -28,6 +28,7 @@ class CiProcedure
|
|
28
28
|
end
|
29
29
|
|
30
30
|
def re_get_console_output
|
31
|
+
self.raam_page = go_to_pull_request_page
|
31
32
|
self.issue_page = go_to_issue
|
32
33
|
self.console_page = go_to_console_output
|
33
34
|
get_console_output
|
@@ -82,7 +83,7 @@ class CiProcedure
|
|
82
83
|
|
83
84
|
def issue_link
|
84
85
|
links = raam_page.links
|
85
|
-
|
86
|
+
links.select { |link| link.text.match(matching_strategy) }.first
|
86
87
|
end
|
87
88
|
end
|
88
89
|
|
data/lib/ci_helper/version.rb
CHANGED