phrase 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/docs/Job.md +2 -0
- data/docs/JobCreateParameters.md +2 -0
- data/docs/JobDetails.md +2 -0
- data/docs/JobUpdateParameters.md +3 -1
- data/lib/phrase/models/job.rb +10 -1
- data/lib/phrase/models/job_create_parameters.rb +11 -1
- data/lib/phrase/models/job_details.rb +10 -1
- data/lib/phrase/models/job_update_parameters.rb +14 -4
- data/lib/phrase/version.rb +1 -1
- data/spec/models/job_create_parameters_spec.rb +6 -0
- data/spec/models/job_details_spec.rb +6 -0
- data/spec/models/job_spec.rb +6 -0
- data/spec/models/job_update_parameters_spec.rb +6 -0
- metadata +160 -160
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7277da8bf5499a5b02a2c33a352e5e07fdc7e49816fe52b44c913239f80617d
|
4
|
+
data.tar.gz: b65e4b581b48519fd98e4684af1a84f9d7447b6973c431fdf8047784443530e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5c3a57017447d37279300d268283d34d0407923866ace2b94a1fe7ca44a04693e52eb3b53b903614e859776343522493195d94a49e3deffe330f0060a808105
|
7
|
+
data.tar.gz: b2232eab82dfd26a08585779cab0eee00b5dc796cd182cc1a8db1a18b65c413c5b52571a889ee9f651a9506a495bea0c87b66a3ea08bf75b601c11d8230038ae
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Phrase is a translation management platform for software projects. You can colla
|
|
7
7
|
## This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: 2.0.0
|
10
|
-
- Package version: 1.0.
|
10
|
+
- Package version: 1.0.4
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://developers.phrase.com/api/](https://developers.phrase.com/api/)
|
13
13
|
|
@@ -56,10 +56,10 @@ gem build phrase.gemspec
|
|
56
56
|
Then install the gem locally:
|
57
57
|
|
58
58
|
```shell
|
59
|
-
gem install ./phrase-1.0.
|
59
|
+
gem install ./phrase-1.0.4.gem
|
60
60
|
```
|
61
61
|
|
62
|
-
(for development, run `gem install --dev ./phrase-1.0.
|
62
|
+
(for development, run `gem install --dev ./phrase-1.0.4.gem` to install the development dependencies)
|
63
63
|
|
64
64
|
## Getting Started
|
65
65
|
|
data/docs/Job.md
CHANGED
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
9
9
|
**briefing** | **String** | | [optional]
|
10
10
|
**due_date** | **DateTime** | | [optional]
|
11
11
|
**state** | **String** | | [optional]
|
12
|
+
**ticket_url** | **String** | | [optional]
|
12
13
|
**created_at** | **DateTime** | | [optional]
|
13
14
|
**updated_at** | **DateTime** | | [optional]
|
14
15
|
|
@@ -22,6 +23,7 @@ instance = Phrase::Job.new(id: null,
|
|
22
23
|
briefing: null,
|
23
24
|
due_date: null,
|
24
25
|
state: null,
|
26
|
+
ticket_url: null,
|
25
27
|
created_at: null,
|
26
28
|
updated_at: null)
|
27
29
|
```
|
data/docs/JobCreateParameters.md
CHANGED
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
8
8
|
**name** | **String** | Job name | [optional]
|
9
9
|
**briefing** | **String** | Briefing for the translators | [optional]
|
10
10
|
**due_date** | **DateTime** | Date the job should be finished | [optional]
|
11
|
+
**ticket_url** | **String** | URL to a ticket for this job (e.g. Jira, Trello) | [optional]
|
11
12
|
**tags** | **Array<String>** | tags of keys that should be included within the job | [optional]
|
12
13
|
**translation_key_ids** | **Array<String>** | ids of keys that should be included within the job | [optional]
|
13
14
|
|
@@ -20,6 +21,7 @@ instance = Phrase::JobCreateParameters.new(branch: my-feature-branch,
|
|
20
21
|
name: de,
|
21
22
|
briefing: de-DE,
|
22
23
|
due_date: null,
|
24
|
+
ticket_url: https://example.atlassian.net/browse/FOO,
|
23
25
|
tags: ["myUploadTag"],
|
24
26
|
translation_key_ids: ["abcd1234cdef1234abcd1234cdef1234"])
|
25
27
|
```
|
data/docs/JobDetails.md
CHANGED
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
9
9
|
**briefing** | **String** | | [optional]
|
10
10
|
**due_date** | **DateTime** | | [optional]
|
11
11
|
**state** | **String** | | [optional]
|
12
|
+
**ticket_url** | **String** | | [optional]
|
12
13
|
**created_at** | **DateTime** | | [optional]
|
13
14
|
**updated_at** | **DateTime** | | [optional]
|
14
15
|
**owner** | [**UserPreview**](UserPreview.md) | | [optional]
|
@@ -26,6 +27,7 @@ instance = Phrase::JobDetails.new(id: null,
|
|
26
27
|
briefing: null,
|
27
28
|
due_date: null,
|
28
29
|
state: null,
|
30
|
+
ticket_url: null,
|
29
31
|
created_at: null,
|
30
32
|
updated_at: null,
|
31
33
|
owner: null,
|
data/docs/JobUpdateParameters.md
CHANGED
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
8
8
|
**name** | **String** | Job name | [optional]
|
9
9
|
**briefing** | **String** | Briefing for the translators | [optional]
|
10
10
|
**due_date** | **DateTime** | Date the job should be finished | [optional]
|
11
|
+
**ticket_url** | **String** | URL to a ticket for this job (e.g. Jira, Trello) | [optional]
|
11
12
|
|
12
13
|
## Code Sample
|
13
14
|
|
@@ -17,7 +18,8 @@ require 'Phrase'
|
|
17
18
|
instance = Phrase::JobUpdateParameters.new(branch: my-feature-branch,
|
18
19
|
name: de,
|
19
20
|
briefing: de-DE,
|
20
|
-
due_date: null
|
21
|
+
due_date: null,
|
22
|
+
ticket_url: https://example.atlassian.net/browse/FOO)
|
21
23
|
```
|
22
24
|
|
23
25
|
|
data/lib/phrase/models/job.rb
CHANGED
@@ -12,6 +12,8 @@ module Phrase
|
|
12
12
|
|
13
13
|
attr_accessor :state
|
14
14
|
|
15
|
+
attr_accessor :ticket_url
|
16
|
+
|
15
17
|
attr_accessor :created_at
|
16
18
|
|
17
19
|
attr_accessor :updated_at
|
@@ -24,6 +26,7 @@ module Phrase
|
|
24
26
|
:'briefing' => :'briefing',
|
25
27
|
:'due_date' => :'due_date',
|
26
28
|
:'state' => :'state',
|
29
|
+
:'ticket_url' => :'ticket_url',
|
27
30
|
:'created_at' => :'created_at',
|
28
31
|
:'updated_at' => :'updated_at'
|
29
32
|
}
|
@@ -37,6 +40,7 @@ module Phrase
|
|
37
40
|
:'briefing' => :'String',
|
38
41
|
:'due_date' => :'DateTime',
|
39
42
|
:'state' => :'String',
|
43
|
+
:'ticket_url' => :'String',
|
40
44
|
:'created_at' => :'DateTime',
|
41
45
|
:'updated_at' => :'DateTime'
|
42
46
|
}
|
@@ -83,6 +87,10 @@ module Phrase
|
|
83
87
|
self.state = attributes[:'state']
|
84
88
|
end
|
85
89
|
|
90
|
+
if attributes.key?(:'ticket_url')
|
91
|
+
self.ticket_url = attributes[:'ticket_url']
|
92
|
+
end
|
93
|
+
|
86
94
|
if attributes.key?(:'created_at')
|
87
95
|
self.created_at = attributes[:'created_at']
|
88
96
|
end
|
@@ -115,6 +123,7 @@ module Phrase
|
|
115
123
|
briefing == o.briefing &&
|
116
124
|
due_date == o.due_date &&
|
117
125
|
state == o.state &&
|
126
|
+
ticket_url == o.ticket_url &&
|
118
127
|
created_at == o.created_at &&
|
119
128
|
updated_at == o.updated_at
|
120
129
|
end
|
@@ -128,7 +137,7 @@ module Phrase
|
|
128
137
|
# Calculates hash code according to all attributes.
|
129
138
|
# @return [Integer] Hash code
|
130
139
|
def hash
|
131
|
-
[id, name, briefing, due_date, state, created_at, updated_at].hash
|
140
|
+
[id, name, briefing, due_date, state, ticket_url, created_at, updated_at].hash
|
132
141
|
end
|
133
142
|
|
134
143
|
# Builds the object from hash
|
@@ -14,6 +14,9 @@ module Phrase
|
|
14
14
|
# Date the job should be finished
|
15
15
|
attr_accessor :due_date
|
16
16
|
|
17
|
+
# URL to a ticket for this job (e.g. Jira, Trello)
|
18
|
+
attr_accessor :ticket_url
|
19
|
+
|
17
20
|
# tags of keys that should be included within the job
|
18
21
|
attr_accessor :tags
|
19
22
|
|
@@ -27,6 +30,7 @@ module Phrase
|
|
27
30
|
:'name' => :'name',
|
28
31
|
:'briefing' => :'briefing',
|
29
32
|
:'due_date' => :'due_date',
|
33
|
+
:'ticket_url' => :'ticket_url',
|
30
34
|
:'tags' => :'tags',
|
31
35
|
:'translation_key_ids' => :'translation_key_ids'
|
32
36
|
}
|
@@ -39,6 +43,7 @@ module Phrase
|
|
39
43
|
:'name' => :'String',
|
40
44
|
:'briefing' => :'String',
|
41
45
|
:'due_date' => :'DateTime',
|
46
|
+
:'ticket_url' => :'String',
|
42
47
|
:'tags' => :'Array<String>',
|
43
48
|
:'translation_key_ids' => :'Array<String>'
|
44
49
|
}
|
@@ -81,6 +86,10 @@ module Phrase
|
|
81
86
|
self.due_date = attributes[:'due_date']
|
82
87
|
end
|
83
88
|
|
89
|
+
if attributes.key?(:'ticket_url')
|
90
|
+
self.ticket_url = attributes[:'ticket_url']
|
91
|
+
end
|
92
|
+
|
84
93
|
if attributes.key?(:'tags')
|
85
94
|
if (value = attributes[:'tags']).is_a?(Array)
|
86
95
|
self.tags = value
|
@@ -116,6 +125,7 @@ module Phrase
|
|
116
125
|
name == o.name &&
|
117
126
|
briefing == o.briefing &&
|
118
127
|
due_date == o.due_date &&
|
128
|
+
ticket_url == o.ticket_url &&
|
119
129
|
tags == o.tags &&
|
120
130
|
translation_key_ids == o.translation_key_ids
|
121
131
|
end
|
@@ -129,7 +139,7 @@ module Phrase
|
|
129
139
|
# Calculates hash code according to all attributes.
|
130
140
|
# @return [Integer] Hash code
|
131
141
|
def hash
|
132
|
-
[branch, name, briefing, due_date, tags, translation_key_ids].hash
|
142
|
+
[branch, name, briefing, due_date, ticket_url, tags, translation_key_ids].hash
|
133
143
|
end
|
134
144
|
|
135
145
|
# Builds the object from hash
|
@@ -12,6 +12,8 @@ module Phrase
|
|
12
12
|
|
13
13
|
attr_accessor :state
|
14
14
|
|
15
|
+
attr_accessor :ticket_url
|
16
|
+
|
15
17
|
attr_accessor :created_at
|
16
18
|
|
17
19
|
attr_accessor :updated_at
|
@@ -32,6 +34,7 @@ module Phrase
|
|
32
34
|
:'briefing' => :'briefing',
|
33
35
|
:'due_date' => :'due_date',
|
34
36
|
:'state' => :'state',
|
37
|
+
:'ticket_url' => :'ticket_url',
|
35
38
|
:'created_at' => :'created_at',
|
36
39
|
:'updated_at' => :'updated_at',
|
37
40
|
:'owner' => :'owner',
|
@@ -49,6 +52,7 @@ module Phrase
|
|
49
52
|
:'briefing' => :'String',
|
50
53
|
:'due_date' => :'DateTime',
|
51
54
|
:'state' => :'String',
|
55
|
+
:'ticket_url' => :'String',
|
52
56
|
:'created_at' => :'DateTime',
|
53
57
|
:'updated_at' => :'DateTime',
|
54
58
|
:'owner' => :'UserPreview',
|
@@ -107,6 +111,10 @@ module Phrase
|
|
107
111
|
self.state = attributes[:'state']
|
108
112
|
end
|
109
113
|
|
114
|
+
if attributes.key?(:'ticket_url')
|
115
|
+
self.ticket_url = attributes[:'ticket_url']
|
116
|
+
end
|
117
|
+
|
110
118
|
if attributes.key?(:'created_at')
|
111
119
|
self.created_at = attributes[:'created_at']
|
112
120
|
end
|
@@ -159,6 +167,7 @@ module Phrase
|
|
159
167
|
briefing == o.briefing &&
|
160
168
|
due_date == o.due_date &&
|
161
169
|
state == o.state &&
|
170
|
+
ticket_url == o.ticket_url &&
|
162
171
|
created_at == o.created_at &&
|
163
172
|
updated_at == o.updated_at &&
|
164
173
|
owner == o.owner &&
|
@@ -176,7 +185,7 @@ module Phrase
|
|
176
185
|
# Calculates hash code according to all attributes.
|
177
186
|
# @return [Integer] Hash code
|
178
187
|
def hash
|
179
|
-
[id, name, briefing, due_date, state, created_at, updated_at, owner, job_tag_name, locales, keys].hash
|
188
|
+
[id, name, briefing, due_date, state, ticket_url, created_at, updated_at, owner, job_tag_name, locales, keys].hash
|
180
189
|
end
|
181
190
|
|
182
191
|
# Builds the object from hash
|
@@ -14,13 +14,17 @@ module Phrase
|
|
14
14
|
# Date the job should be finished
|
15
15
|
attr_accessor :due_date
|
16
16
|
|
17
|
+
# URL to a ticket for this job (e.g. Jira, Trello)
|
18
|
+
attr_accessor :ticket_url
|
19
|
+
|
17
20
|
# Attribute mapping from ruby-style variable name to JSON key.
|
18
21
|
def self.attribute_map
|
19
22
|
{
|
20
23
|
:'branch' => :'branch',
|
21
24
|
:'name' => :'name',
|
22
25
|
:'briefing' => :'briefing',
|
23
|
-
:'due_date' => :'due_date'
|
26
|
+
:'due_date' => :'due_date',
|
27
|
+
:'ticket_url' => :'ticket_url'
|
24
28
|
}
|
25
29
|
end
|
26
30
|
|
@@ -30,7 +34,8 @@ module Phrase
|
|
30
34
|
:'branch' => :'String',
|
31
35
|
:'name' => :'String',
|
32
36
|
:'briefing' => :'String',
|
33
|
-
:'due_date' => :'DateTime'
|
37
|
+
:'due_date' => :'DateTime',
|
38
|
+
:'ticket_url' => :'String'
|
34
39
|
}
|
35
40
|
end
|
36
41
|
|
@@ -70,6 +75,10 @@ module Phrase
|
|
70
75
|
if attributes.key?(:'due_date')
|
71
76
|
self.due_date = attributes[:'due_date']
|
72
77
|
end
|
78
|
+
|
79
|
+
if attributes.key?(:'ticket_url')
|
80
|
+
self.ticket_url = attributes[:'ticket_url']
|
81
|
+
end
|
73
82
|
end
|
74
83
|
|
75
84
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -93,7 +102,8 @@ module Phrase
|
|
93
102
|
branch == o.branch &&
|
94
103
|
name == o.name &&
|
95
104
|
briefing == o.briefing &&
|
96
|
-
due_date == o.due_date
|
105
|
+
due_date == o.due_date &&
|
106
|
+
ticket_url == o.ticket_url
|
97
107
|
end
|
98
108
|
|
99
109
|
# @see the `==` method
|
@@ -105,7 +115,7 @@ module Phrase
|
|
105
115
|
# Calculates hash code according to all attributes.
|
106
116
|
# @return [Integer] Hash code
|
107
117
|
def hash
|
108
|
-
[branch, name, briefing, due_date].hash
|
118
|
+
[branch, name, briefing, due_date, ticket_url].hash
|
109
119
|
end
|
110
120
|
|
111
121
|
# Builds the object from hash
|
data/lib/phrase/version.rb
CHANGED
@@ -44,6 +44,12 @@ describe 'JobCreateParameters' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "ticket_url"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
47
53
|
describe 'test attribute "tags"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -50,6 +50,12 @@ describe 'JobDetails' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
describe 'test attribute "ticket_url"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
53
59
|
describe 'test attribute "created_at"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/spec/models/job_spec.rb
CHANGED
@@ -50,6 +50,12 @@ describe 'Job' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
describe 'test attribute "ticket_url"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
53
59
|
describe 'test attribute "created_at"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phrase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phrase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-10-
|
11
|
+
date: 2020-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -705,196 +705,196 @@ summary: You can collaborate on language file translation with your team or orde
|
|
705
705
|
locale files, tag keys or interact in other ways with the localization data stored
|
706
706
|
in Phrase for your account.
|
707
707
|
test_files:
|
708
|
-
- spec/api/
|
709
|
-
- spec/api/
|
710
|
-
- spec/api/screenshot_markers_api_spec.rb
|
708
|
+
- spec/api/git_hub_sync_api_spec.rb
|
709
|
+
- spec/api/git_lab_sync_api_spec.rb
|
711
710
|
- spec/api/documents_api_spec.rb
|
712
|
-
- spec/api/
|
713
|
-
- spec/api/spaces_api_spec.rb
|
711
|
+
- spec/api/branches_api_spec.rb
|
714
712
|
- spec/api/members_api_spec.rb
|
715
|
-
- spec/api/bitbucket_sync_api_spec.rb
|
716
|
-
- spec/api/formats_api_spec.rb
|
717
|
-
- spec/api/git_hub_sync_api_spec.rb
|
718
|
-
- spec/api/teams_api_spec.rb
|
719
|
-
- spec/api/style_guides_api_spec.rb
|
720
|
-
- spec/api/users_api_spec.rb
|
721
|
-
- spec/api/blacklisted_keys_api_spec.rb
|
722
713
|
- spec/api/jobs_api_spec.rb
|
723
|
-
- spec/api/
|
714
|
+
- spec/api/distributions_api_spec.rb
|
715
|
+
- spec/api/comments_api_spec.rb
|
716
|
+
- spec/api/versions_history_api_spec.rb
|
724
717
|
- spec/api/screenshots_api_spec.rb
|
725
|
-
- spec/api/
|
726
|
-
- spec/api/
|
718
|
+
- spec/api/glossary_terms_api_spec.rb
|
719
|
+
- spec/api/style_guides_api_spec.rb
|
720
|
+
- spec/api/spaces_api_spec.rb
|
721
|
+
- spec/api/locales_api_spec.rb
|
722
|
+
- spec/api/screenshot_markers_api_spec.rb
|
723
|
+
- spec/api/formats_api_spec.rb
|
724
|
+
- spec/api/releases_api_spec.rb
|
725
|
+
- spec/api/accounts_api_spec.rb
|
726
|
+
- spec/api/users_api_spec.rb
|
727
|
+
- spec/api/glossary_term_translations_api_spec.rb
|
728
|
+
- spec/api/teams_api_spec.rb
|
727
729
|
- spec/api/translations_api_spec.rb
|
730
|
+
- spec/api/glossaries_api_spec.rb
|
731
|
+
- spec/api/job_locales_api_spec.rb
|
728
732
|
- spec/api/webhooks_api_spec.rb
|
729
|
-
- spec/api/
|
730
|
-
- spec/api/branches_api_spec.rb
|
731
|
-
- spec/api/releases_api_spec.rb
|
732
|
-
- spec/api/comments_api_spec.rb
|
733
|
+
- spec/api/uploads_api_spec.rb
|
733
734
|
- spec/api/tags_api_spec.rb
|
734
|
-
- spec/api/
|
735
|
-
- spec/api/accounts_api_spec.rb
|
736
|
-
- spec/api/locales_api_spec.rb
|
737
|
-
- spec/api/authorizations_api_spec.rb
|
735
|
+
- spec/api/keys_api_spec.rb
|
738
736
|
- spec/api/orders_api_spec.rb
|
737
|
+
- spec/api/blacklisted_keys_api_spec.rb
|
738
|
+
- spec/api/authorizations_api_spec.rb
|
739
|
+
- spec/api/bitbucket_sync_api_spec.rb
|
740
|
+
- spec/api/projects_api_spec.rb
|
739
741
|
- spec/api/invitations_api_spec.rb
|
740
|
-
- spec/api/glossary_terms_api_spec.rb
|
741
|
-
- spec/api/git_lab_sync_api_spec.rb
|
742
742
|
- spec/api_client_spec.rb
|
743
743
|
- spec/configuration_spec.rb
|
744
|
-
- spec/models/
|
745
|
-
- spec/models/
|
746
|
-
- spec/models/
|
747
|
-
- spec/models/
|
748
|
-
- spec/models/
|
749
|
-
- spec/models/
|
744
|
+
- spec/models/styleguide_spec.rb
|
745
|
+
- spec/models/release_create_parameters_spec.rb
|
746
|
+
- spec/models/order_confirm_parameters_spec.rb
|
747
|
+
- spec/models/screenshot_marker_spec.rb
|
748
|
+
- spec/models/tag_with_stats1_statistics_spec.rb
|
749
|
+
- spec/models/upload_spec.rb
|
750
|
+
- spec/models/github_sync_import_parameters_spec.rb
|
751
|
+
- spec/models/translations_unverify_parameters_spec.rb
|
752
|
+
- spec/models/account_details_spec.rb
|
753
|
+
- spec/models/upload_create_parameters_spec.rb
|
754
|
+
- spec/models/job_complete_parameters_spec.rb
|
750
755
|
- spec/models/bitbucket_sync_import_parameters_spec.rb
|
751
|
-
- spec/models/
|
752
|
-
- spec/models/
|
753
|
-
- spec/models/webhook_spec.rb
|
754
|
-
- spec/models/teams_projects_create_parameters_spec.rb
|
755
|
-
- spec/models/gitlab_sync_export_parameters_spec.rb
|
756
|
-
- spec/models/invitation_spec.rb
|
757
|
-
- spec/models/authorization_create_parameters_spec.rb
|
758
|
-
- spec/models/member_spec.rb
|
759
|
-
- spec/models/glossary_term_update_parameters_spec.rb
|
756
|
+
- spec/models/translation_details_spec.rb
|
757
|
+
- spec/models/locale_statistics_spec.rb
|
760
758
|
- spec/models/tag_with_stats_spec.rb
|
761
|
-
- spec/models/
|
759
|
+
- spec/models/translation_key_spec.rb
|
760
|
+
- spec/models/translation_version_with_user1_spec.rb
|
761
|
+
- spec/models/project_spec.rb
|
762
|
+
- spec/models/authorization_create_parameters_spec.rb
|
763
|
+
- spec/models/account_spec.rb
|
764
|
+
- spec/models/glossary_term_translation_update_parameters_spec.rb
|
765
|
+
- spec/models/gitlab_sync_export_parameters_spec.rb
|
766
|
+
- spec/models/keys_search_parameters_spec.rb
|
767
|
+
- spec/models/translation_unverify_parameters_spec.rb
|
768
|
+
- spec/models/bitbucket_sync_export_response_spec.rb
|
769
|
+
- spec/models/webhook_update_parameters_spec.rb
|
770
|
+
- spec/models/blacklisted_key_update_parameters_spec.rb
|
771
|
+
- spec/models/translation_version_with_user_spec.rb
|
772
|
+
- spec/models/comment_spec.rb
|
773
|
+
- spec/models/job_locale_spec.rb
|
762
774
|
- spec/models/blacklisted_key_create_parameters_spec.rb
|
763
|
-
- spec/models/
|
764
|
-
- spec/models/locale_create_parameters_spec.rb
|
765
|
-
- spec/models/document_spec.rb
|
766
|
-
- spec/models/styleguide_update_parameters_spec.rb
|
767
|
-
- spec/models/project_short_spec.rb
|
768
|
-
- spec/models/github_sync_export_parameters_spec.rb
|
769
|
-
- spec/models/team_create_parameters_spec.rb
|
775
|
+
- spec/models/affected_count_spec.rb
|
770
776
|
- spec/models/job_details_spec.rb
|
771
|
-
- spec/models/
|
772
|
-
- spec/models/
|
773
|
-
- spec/models/
|
774
|
-
- spec/models/
|
775
|
-
- spec/models/invitation_update_parameters_spec.rb
|
777
|
+
- spec/models/glossary_spec.rb
|
778
|
+
- spec/models/translations_verify_parameters_spec.rb
|
779
|
+
- spec/models/inline_response422_spec.rb
|
780
|
+
- spec/models/translation_order_spec.rb
|
776
781
|
- spec/models/translation_key_details1_spec.rb
|
777
|
-
- spec/models/
|
778
|
-
- spec/models/
|
782
|
+
- spec/models/job_spec.rb
|
783
|
+
- spec/models/screenshot_marker_update_parameters_spec.rb
|
784
|
+
- spec/models/translation_exclude_parameters_spec.rb
|
785
|
+
- spec/models/job_preview_spec.rb
|
786
|
+
- spec/models/glossary_create_parameters_spec.rb
|
787
|
+
- spec/models/job_create_parameters_spec.rb
|
788
|
+
- spec/models/translations_search_parameters_spec.rb
|
789
|
+
- spec/models/translation_details1_spec.rb
|
790
|
+
- spec/models/translation_review_parameters_spec.rb
|
791
|
+
- spec/models/account_details1_spec.rb
|
792
|
+
- spec/models/tag_spec.rb
|
793
|
+
- spec/models/translation_update_parameters_spec.rb
|
794
|
+
- spec/models/authorization_update_parameters_spec.rb
|
795
|
+
- spec/models/project_short_spec.rb
|
796
|
+
- spec/models/locale_preview_spec.rb
|
797
|
+
- spec/models/affected_resources_spec.rb
|
798
|
+
- spec/models/invitation_update_parameters_spec.rb
|
779
799
|
- spec/models/invitation_create_parameters_spec.rb
|
780
|
-
- spec/models/
|
781
|
-
- spec/models/
|
800
|
+
- spec/models/branch_create_parameters_spec.rb
|
801
|
+
- spec/models/job_details1_spec.rb
|
802
|
+
- spec/models/job_locale_reopen_parameters_spec.rb
|
803
|
+
- spec/models/translation_key_details_spec.rb
|
804
|
+
- spec/models/locale_details_spec.rb
|
805
|
+
- spec/models/tag_with_stats1_spec.rb
|
806
|
+
- spec/models/glossary_term_spec.rb
|
782
807
|
- spec/models/tag_with_stats1_statistics1_spec.rb
|
783
|
-
- spec/models/
|
784
|
-
- spec/models/locale_spec.rb
|
785
|
-
- spec/models/styleguide_details1_spec.rb
|
786
|
-
- spec/models/glossary_term_translation_create_parameters_spec.rb
|
787
|
-
- spec/models/affected_count_spec.rb
|
788
|
-
- spec/models/glossary_create_parameters_spec.rb
|
789
|
-
- spec/models/translations_review_parameters_spec.rb
|
790
|
-
- spec/models/project_locales_spec.rb
|
791
|
-
- spec/models/project_create_parameters_spec.rb
|
808
|
+
- spec/models/glossary_term_translation_spec.rb
|
792
809
|
- spec/models/project_details1_spec.rb
|
793
|
-
- spec/models/
|
794
|
-
- spec/models/
|
795
|
-
- spec/models/
|
796
|
-
- spec/models/
|
797
|
-
- spec/models/
|
798
|
-
- spec/models/
|
799
|
-
- spec/models/job_locales_create_parameters_spec.rb
|
810
|
+
- spec/models/release_preview_spec.rb
|
811
|
+
- spec/models/team_create_parameters_spec.rb
|
812
|
+
- spec/models/styleguide_update_parameters_spec.rb
|
813
|
+
- spec/models/github_sync_export_parameters_spec.rb
|
814
|
+
- spec/models/team_update_parameters_spec.rb
|
815
|
+
- spec/models/invitation_spec.rb
|
800
816
|
- spec/models/styleguide_preview_spec.rb
|
801
|
-
- spec/models/release_spec.rb
|
802
817
|
- spec/models/comment_update_parameters_spec.rb
|
803
|
-
- spec/models/
|
804
|
-
- spec/models/
|
805
|
-
- spec/models/
|
818
|
+
- spec/models/job_start_parameters_spec.rb
|
819
|
+
- spec/models/space_spec.rb
|
820
|
+
- spec/models/project_details_spec.rb
|
821
|
+
- spec/models/screenshot_update_parameters_spec.rb
|
822
|
+
- spec/models/space_update_parameters_spec.rb
|
823
|
+
- spec/models/key_create_parameters_spec.rb
|
824
|
+
- spec/models/teams_spaces_create_parameters_spec.rb
|
825
|
+
- spec/models/glossary_term_translation_create_parameters_spec.rb
|
826
|
+
- spec/models/user_spec.rb
|
827
|
+
- spec/models/locale_create_parameters_spec.rb
|
806
828
|
- spec/models/job_locale_update_parameters_spec.rb
|
829
|
+
- spec/models/keys_tag_parameters_spec.rb
|
830
|
+
- spec/models/user_preview_spec.rb
|
831
|
+
- spec/models/inline_response422_errors_spec.rb
|
832
|
+
- spec/models/project_create_parameters_spec.rb
|
833
|
+
- spec/models/format_spec.rb
|
834
|
+
- spec/models/locale_spec.rb
|
835
|
+
- spec/models/team_detail_spec.rb
|
836
|
+
- spec/models/gitlab_sync_history_spec.rb
|
837
|
+
- spec/models/job_update_parameters_spec.rb
|
838
|
+
- spec/models/translations_include_parameters_spec.rb
|
839
|
+
- spec/models/job_locales_create_parameters_spec.rb
|
840
|
+
- spec/models/screenshot_marker_create_parameters_spec.rb
|
841
|
+
- spec/models/project_update_parameters_spec.rb
|
842
|
+
- spec/models/webhook_spec.rb
|
843
|
+
- spec/models/distribution_update_parameters_spec.rb
|
844
|
+
- spec/models/comment_create_parameters_spec.rb
|
807
845
|
- spec/models/glossary_term_create_parameters_spec.rb
|
808
|
-
- spec/models/
|
809
|
-
- spec/models/
|
846
|
+
- spec/models/locale_update_parameters_spec.rb
|
847
|
+
- spec/models/translation_verify_parameters_spec.rb
|
848
|
+
- spec/models/translation_spec.rb
|
810
849
|
- spec/models/gitlab_sync_import_parameters_spec.rb
|
811
|
-
- spec/models/
|
812
|
-
- spec/models/
|
813
|
-
- spec/models/authorization_spec.rb
|
814
|
-
- spec/models/authorization_with_token1_spec.rb
|
815
|
-
- spec/models/screenshot_marker_spec.rb
|
816
|
-
- spec/models/gitlab_sync_spec.rb
|
817
|
-
- spec/models/job_locale_spec.rb
|
818
|
-
- spec/models/project_update_parameters_spec.rb
|
819
|
-
- spec/models/space_create_parameters_spec.rb
|
820
|
-
- spec/models/translation_exclude_parameters_spec.rb
|
821
|
-
- spec/models/github_sync_import_parameters_spec.rb
|
822
|
-
- spec/models/affected_resources_spec.rb
|
823
|
-
- spec/models/project_locales1_spec.rb
|
824
|
-
- spec/models/project_details_spec.rb
|
850
|
+
- spec/models/distribution_preview_spec.rb
|
851
|
+
- spec/models/screenshot_create_parameters_spec.rb
|
825
852
|
- spec/models/job_reopen_parameters_spec.rb
|
826
|
-
- spec/models/locale_preview_spec.rb
|
827
|
-
- spec/models/team_spec.rb
|
828
|
-
- spec/models/webhook_create_parameters_spec.rb
|
829
|
-
- spec/models/release_update_parameters_spec.rb
|
830
|
-
- spec/models/tag_create_parameters_spec.rb
|
831
|
-
- spec/models/authorization_with_token_spec.rb
|
832
|
-
- spec/models/account_spec.rb
|
833
|
-
- spec/models/comment_mark_read_parameters_spec.rb
|
834
|
-
- spec/models/screenshot_spec.rb
|
835
|
-
- spec/models/translation_review_parameters_spec.rb
|
836
|
-
- spec/models/webhook_update_parameters_spec.rb
|
837
|
-
- spec/models/tag_with_stats1_statistics_spec.rb
|
838
853
|
- spec/models/job_keys_create_parameters_spec.rb
|
839
|
-
- spec/models/
|
840
|
-
- spec/models/release_create_parameters_spec.rb
|
854
|
+
- spec/models/branch_merge_parameters_spec.rb
|
841
855
|
- spec/models/upload_summary_spec.rb
|
842
|
-
- spec/models/
|
843
|
-
- spec/models/
|
844
|
-
- spec/models/
|
845
|
-
- spec/models/
|
846
|
-
- spec/models/
|
847
|
-
- spec/models/
|
848
|
-
- spec/models/translations_verify_parameters_spec.rb
|
849
|
-
- spec/models/glossary_term_spec.rb
|
850
|
-
- spec/models/keys_tag_parameters_spec.rb
|
851
|
-
- spec/models/translation_key_spec.rb
|
852
|
-
- spec/models/keys_search_parameters_spec.rb
|
856
|
+
- spec/models/project_locales1_spec.rb
|
857
|
+
- spec/models/release_spec.rb
|
858
|
+
- spec/models/glossary_term_update_parameters_spec.rb
|
859
|
+
- spec/models/member_update_parameters_spec.rb
|
860
|
+
- spec/models/teams_users_create_parameters_spec.rb
|
861
|
+
- spec/models/release_update_parameters_spec.rb
|
853
862
|
- spec/models/keys_untag_parameters_spec.rb
|
854
|
-
- spec/models/
|
855
|
-
- spec/models/
|
856
|
-
- spec/models/
|
857
|
-
- spec/models/
|
863
|
+
- spec/models/team_spec.rb
|
864
|
+
- spec/models/branch_update_parameters_spec.rb
|
865
|
+
- spec/models/gitlab_sync_export_spec.rb
|
866
|
+
- spec/models/job_locale_complete_parameters_spec.rb
|
858
867
|
- spec/models/key_preview_spec.rb
|
859
|
-
- spec/models/
|
860
|
-
- spec/models/
|
861
|
-
- spec/models/
|
862
|
-
- spec/models/
|
863
|
-
- spec/models/
|
864
|
-
- spec/models/
|
865
|
-
- spec/models/screenshot_create_parameters_spec.rb
|
868
|
+
- spec/models/branch_spec.rb
|
869
|
+
- spec/models/translation_include_parameters_spec.rb
|
870
|
+
- spec/models/bitbucket_sync_spec.rb
|
871
|
+
- spec/models/bitbucket_sync_export_parameters_spec.rb
|
872
|
+
- spec/models/key_update_parameters_spec.rb
|
873
|
+
- spec/models/blacklisted_key_spec.rb
|
866
874
|
- spec/models/order_create_parameters_spec.rb
|
875
|
+
- spec/models/tag_create_parameters_spec.rb
|
876
|
+
- spec/models/translations_exclude_parameters_spec.rb
|
877
|
+
- spec/models/document_spec.rb
|
878
|
+
- spec/models/authorization_spec.rb
|
867
879
|
- spec/models/glossary_update_parameters_spec.rb
|
868
|
-
- spec/models/styleguide_spec.rb
|
869
|
-
- spec/models/locale_details_spec.rb
|
870
|
-
- spec/models/team_detail_spec.rb
|
871
|
-
- spec/models/translation_key_details_spec.rb
|
872
|
-
- spec/models/authorization_update_parameters_spec.rb
|
873
|
-
- spec/models/translation_update_parameters_spec.rb
|
874
|
-
- spec/models/job_update_parameters_spec.rb
|
875
880
|
- spec/models/translation_version_spec.rb
|
876
|
-
- spec/models/
|
877
|
-
- spec/models/
|
878
|
-
- spec/models/
|
879
|
-
- spec/models/
|
880
|
-
- spec/models/
|
881
|
-
- spec/models/
|
882
|
-
- spec/models/
|
883
|
-
- spec/models/
|
881
|
+
- spec/models/locale_details1_spec.rb
|
882
|
+
- spec/models/styleguide_create_parameters_spec.rb
|
883
|
+
- spec/models/translations_review_parameters_spec.rb
|
884
|
+
- spec/models/authorization_with_token1_spec.rb
|
885
|
+
- spec/models/screenshot_spec.rb
|
886
|
+
- spec/models/authorization_with_token_spec.rb
|
887
|
+
- spec/models/teams_projects_create_parameters_spec.rb
|
888
|
+
- spec/models/webhook_create_parameters_spec.rb
|
889
|
+
- spec/models/member_spec.rb
|
890
|
+
- spec/models/gitlab_sync_spec.rb
|
891
|
+
- spec/models/distribution_spec.rb
|
892
|
+
- spec/models/space_create_parameters_spec.rb
|
893
|
+
- spec/models/styleguide_details_spec.rb
|
884
894
|
- spec/models/distribution_create_parameters_spec.rb
|
885
|
-
- spec/models/branch_update_parameters_spec.rb
|
886
|
-
- spec/models/project_spec.rb
|
887
|
-
- spec/models/account_details1_spec.rb
|
888
|
-
- spec/models/upload_spec.rb
|
889
|
-
- spec/models/comment_spec.rb
|
890
|
-
- spec/models/job_spec.rb
|
891
|
-
- spec/models/translations_unverify_parameters_spec.rb
|
892
|
-
- spec/models/order_confirm_parameters_spec.rb
|
893
|
-
- spec/models/translation_unverify_parameters_spec.rb
|
894
|
-
- spec/models/distribution_preview_spec.rb
|
895
|
-
- spec/models/format_spec.rb
|
896
895
|
- spec/models/translation_create_parameters_spec.rb
|
897
|
-
- spec/models/
|
898
|
-
- spec/models/
|
899
|
-
- spec/models/
|
896
|
+
- spec/models/project_locales_spec.rb
|
897
|
+
- spec/models/comment_mark_read_parameters_spec.rb
|
898
|
+
- spec/models/styleguide_details1_spec.rb
|
899
|
+
- spec/models/spaces_projects_create_parameters_spec.rb
|
900
900
|
- spec/spec_helper.rb
|