gitlab_support_readiness 1.0.13 → 1.0.14
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/lib/support_readiness/gitlab/jobs.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 040cceb4e53838dc33cb011e6d0163e7d513c01ae5f23d960fda05b3834b6f80
|
4
|
+
data.tar.gz: 48b1fbc4f2cdd9b4df38b830c56caec822217f13f99fe15afef007382ed000d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4537f6217a3ed63769dc1a169645149f953b50e1b89cb738c8c840637d7de97d239d189eb0ec55575a8bd8e03d8e5edc11f5a75b9cc1cf7f3232c004de886012
|
7
|
+
data.tar.gz: 73d03554d595711e854bd6c2666f9f275acc657b5713347c3f88be08c1319e67d097d67589a89d8aa50e0b86e22e8ecd2ab683d2d350b1ab4b537a9c6883ef37
|
@@ -79,7 +79,7 @@ module Readiness
|
|
79
79
|
# jobs = Readiness::GitLab::Jobs.list_project(client, project, 2)
|
80
80
|
# puts jobs.count
|
81
81
|
# # => 200
|
82
|
-
def list_project(client, project, limit = 0, filters = [])
|
82
|
+
def self.list_project(client, project, limit = 0, filters = [])
|
83
83
|
array = []
|
84
84
|
page = 1
|
85
85
|
loop do
|
@@ -117,7 +117,7 @@ module Readiness
|
|
117
117
|
# jobs = Readiness::GitLab::Jobs.list_pipeline(client, pipeline, 1)
|
118
118
|
# puts jobs.count
|
119
119
|
# # => 100
|
120
|
-
def list_pipeline(client, pipeline, limit = 0, filters = [])
|
120
|
+
def self.list_pipeline(client, pipeline, limit = 0, filters = [])
|
121
121
|
array = []
|
122
122
|
page = 1
|
123
123
|
loop do
|