gitlab-triage 1.5.1 → 1.6.0
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/README.md +10 -9
- data/lib/gitlab/triage/resource/shared/issuable.rb +4 -0
- data/lib/gitlab/triage/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: 85ef311a9c0950dacc0823958bf5a5a61ead1dbc6696599d5a9c1ed9d1cc5ca7
|
|
4
|
+
data.tar.gz: 421ccd2c8d050659990ad07a8493d23bac378224acd94f47997cfaeec3633b04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 706a9954e233b3a7c427068194e25a998fd193fd6373f5d82ad2f152935c2ca9ec16fd61301c687fac057b4972ccadfcc34bc52d44821494bd908cd5eae32b6e
|
|
7
|
+
data.tar.gz: 639d905c6dce18d3d1af351897a05800e4cb708a7673dc325887d0b38a58d62c54dc85afdf084705ec713ec9d3d9c06273fc7b8afce5e8644a3fada7193b5d2b
|
data/README.md
CHANGED
|
@@ -841,15 +841,16 @@ Here's a list of currently available Ruby expression API:
|
|
|
841
841
|
|
|
842
842
|
##### API
|
|
843
843
|
|
|
844
|
-
| Name
|
|
845
|
-
| ----
|
|
846
|
-
| resource
|
|
847
|
-
|
|
|
848
|
-
|
|
|
849
|
-
|
|
|
850
|
-
|
|
|
851
|
-
|
|
|
852
|
-
|
|
|
844
|
+
| Name | Return type | Description |
|
|
845
|
+
| ---- | ---- | ---- |
|
|
846
|
+
| resource | Hash | The hash containing the raw data of the resource |
|
|
847
|
+
| author | String | The username of the resource author |
|
|
848
|
+
| milestone | Milestone | The milestone attached to the resource |
|
|
849
|
+
| labels | [Label] | A list of labels, having only names |
|
|
850
|
+
| labels_with_details | [Label] | A list of labels which has more information loaded from another API request |
|
|
851
|
+
| labels_chronologically | [Label] | Same as `labels_with_details` but sorted chronologically |
|
|
852
|
+
| label_events | [LabelEvent] | A list of label events on the resource |
|
|
853
|
+
| instance_version | InstanceVersion | The version for the GitLab instance we're triaging with |
|
|
853
854
|
|
|
854
855
|
##### Methods for `Milestone`
|
|
855
856
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-triage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitLab
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -210,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
210
210
|
- !ruby/object:Gem::Version
|
|
211
211
|
version: '0'
|
|
212
212
|
requirements: []
|
|
213
|
-
rubygems_version: 3.0.
|
|
213
|
+
rubygems_version: 3.0.3
|
|
214
214
|
signing_key:
|
|
215
215
|
specification_version: 4
|
|
216
216
|
summary: GitLab triage automation project.
|