@templmf/temp-solf-lmf 0.0.107 → 0.0.109
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.
- package/gitlab-foss-8-17-stable/doc/api/README.md +391 -0
- package/gitlab-foss-8-17-stable/doc/api/access_requests.md +139 -0
- package/gitlab-foss-8-17-stable/doc/api/award_emoji.md +374 -0
- package/gitlab-foss-8-17-stable/doc/api/boards.md +241 -0
- package/gitlab-foss-8-17-stable/doc/api/branches.md +260 -0
- package/gitlab-foss-8-17-stable/doc/api/broadcast_messages.md +154 -0
- package/gitlab-foss-8-17-stable/doc/api/build_triggers.md +118 -0
- package/gitlab-foss-8-17-stable/doc/api/build_variables.md +128 -0
- package/gitlab-foss-8-17-stable/doc/api/builds.md +610 -0
- package/gitlab-foss-8-17-stable/doc/api/ci/README.md +24 -0
- package/gitlab-foss-8-17-stable/doc/api/ci/builds.md +147 -0
- package/gitlab-foss-8-17-stable/doc/api/ci/lint.md +49 -0
- package/gitlab-foss-8-17-stable/doc/api/ci/runners.md +59 -0
- package/gitlab-foss-8-17-stable/doc/api/commits.md +479 -0
- package/gitlab-foss-8-17-stable/doc/api/deploy_key_multiple_projects.md +29 -0
- package/gitlab-foss-8-17-stable/doc/api/deploy_keys.md +216 -0
- package/gitlab-foss-8-17-stable/doc/api/deployments.md +218 -0
- package/gitlab-foss-8-17-stable/doc/api/enviroments.md +121 -0
- package/gitlab-foss-8-17-stable/doc/api/groups.md +484 -0
- package/gitlab-foss-8-17-stable/doc/api/issues.md +856 -0
- package/gitlab-foss-8-17-stable/doc/api/keys.md +46 -0
- package/gitlab-foss-8-17-stable/doc/api/labels.md +257 -0
- package/gitlab-foss-8-17-stable/doc/api/members.md +175 -0
- package/gitlab-foss-8-17-stable/doc/api/merge_requests.md +1158 -0
- package/gitlab-foss-8-17-stable/doc/api/milestones.md +105 -0
- package/gitlab-foss-8-17-stable/doc/api/namespaces.md +70 -0
- package/gitlab-foss-8-17-stable/doc/api/notes.md +407 -0
- package/gitlab-foss-8-17-stable/doc/api/notification_settings.md +177 -0
- package/gitlab-foss-8-17-stable/doc/api/oauth2.md +137 -0
- package/gitlab-foss-8-17-stable/doc/api/pipelines.md +259 -0
- package/gitlab-foss-8-17-stable/doc/api/project_snippets.md +118 -0
- package/gitlab-foss-8-17-stable/doc/api/projects.md +1402 -0
- package/gitlab-foss-8-17-stable/doc/api/repositories.md +200 -0
- package/gitlab-foss-8-17-stable/doc/api/repository_files.md +134 -0
- package/gitlab-foss-8-17-stable/doc/api/runners.md +322 -0
- package/gitlab-foss-8-17-stable/doc/api/services.md +812 -0
- package/gitlab-foss-8-17-stable/doc/api/session.md +56 -0
- package/gitlab-foss-8-17-stable/doc/api/settings.md +126 -0
- package/gitlab-foss-8-17-stable/doc/api/sidekiq_metrics.md +152 -0
- package/gitlab-foss-8-17-stable/doc/api/snippets.md +232 -0
- package/gitlab-foss-8-17-stable/doc/api/system_hooks.md +146 -0
- package/gitlab-foss-8-17-stable/doc/api/tags.md +191 -0
- package/gitlab-foss-8-17-stable/doc/api/templates/gitignores.md +579 -0
- package/gitlab-foss-8-17-stable/doc/api/templates/gitlab_ci_ymls.md +120 -0
- package/gitlab-foss-8-17-stable/doc/api/templates/licenses.md +147 -0
- package/gitlab-foss-8-17-stable/doc/api/todos.md +296 -0
- package/gitlab-foss-8-17-stable/doc/api/users.md +835 -0
- package/gitlab-foss-8-17-stable/doc/api/v3_to_v4.md +14 -0
- package/gitlab-foss-8-17-stable/doc/api/version.md +23 -0
- package/package.json +1 -1
- package/SkillConfigPanel.vue +0 -2322
|
@@ -0,0 +1,579 @@
|
|
|
1
|
+
# Gitignores
|
|
2
|
+
|
|
3
|
+
## List gitignore templates
|
|
4
|
+
|
|
5
|
+
Get all gitignore templates.
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
GET /templates/gitignores
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
curl https://gitlab.example.com/api/v3/templates/gitignores
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Example response:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
[
|
|
19
|
+
{
|
|
20
|
+
"name": "AppEngine"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Laravel"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "Elisp"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "SketchUp"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Ada"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "Ruby"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "Kohana"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "Nanoc"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "Erlang"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "OCaml"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "Lithium"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Fortran"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "Scala"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "Node"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "Fancy"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "Perl"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "Zephir"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "WordPress"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "Symfony"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "FuelPHP"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "DM"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "Sdcc"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "Rust"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "C"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "Umbraco"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "Actionscript"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "Android"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "Grails"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "Composer"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "ExpressionEngine"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "Gcov"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "Qt"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "Phalcon"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "ArchLinuxPackages"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "TeX"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "SCons"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "Lilypond"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "CommonLisp"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "Rails"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "Mercury"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"name": "Magento"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "ChefCookbook"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "GitBook"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "C++"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "Eagle"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "Go"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "OpenCart"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "Scheme"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "Typo3"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "SeamGen"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "Swift"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "Elm"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "Unity"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"name": "Agda"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "CUDA"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "VVVV"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "Finale"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "LemonStand"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "Textpattern"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "Julia"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"name": "Packer"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "Scrivener"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "Dart"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"name": "Plone"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "Jekyll"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "Xojo"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"name": "LabVIEW"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "Autotools"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "KiCad"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "Prestashop"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "ROS"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "Smalltalk"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "GWT"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"name": "OracleForms"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "SugarCRM"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "Nim"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "SymphonyCMS"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "Maven"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"name": "CFWheels"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"name": "Python"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "ZendFramework"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "CakePHP"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"name": "Concrete5"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "PlayFramework"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"name": "Terraform"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "Elixir"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "CMake"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"name": "Joomla"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"name": "Coq"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "Delphi"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"name": "Haskell"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "Yii"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"name": "Java"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "UnrealEngine"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"name": "AppceleratorTitanium"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"name": "CraftCMS"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "ForceDotCom"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "ExtJs"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"name": "MetaProgrammingSystem"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "D"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "Objective-C"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"name": "RhodesRhomobile"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"name": "R"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"name": "EPiServer"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "Yeoman"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "VisualStudio"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"name": "Processing"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"name": "Leiningen"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "Stella"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "Opa"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "Drupal"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "TurboGears2"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "Idris"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"name": "Jboss"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "CodeIgniter"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "Qooxdoo"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "Waf"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "Sass"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"name": "Lua"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "Clojure"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"name": "IGORPro"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"name": "Gradle"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"name": "Archives"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "SynopsysVCS"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"name": "Ninja"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"name": "Tags"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"name": "OSX"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "Dreamweaver"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "CodeKit"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "NotepadPP"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "VisualStudioCode"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "Mercurial"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"name": "BricxCC"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"name": "DartEditor"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"name": "Eclipse"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "Cloud9"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"name": "TortoiseGit"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "NetBeans"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"name": "GPG"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"name": "Espresso"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"name": "Redcar"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"name": "Xcode"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"name": "Matlab"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"name": "LyX"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"name": "SlickEdit"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"name": "Dropbox"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"name": "CVS"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"name": "Calabash"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"name": "JDeveloper"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"name": "Vagrant"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"name": "IPythonNotebook"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"name": "TextMate"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"name": "Ensime"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"name": "WebMethods"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"name": "VirtualEnv"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "Emacs"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"name": "Momentics"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"name": "JetBrains"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"name": "SublimeText"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"name": "Kate"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"name": "ModelSim"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"name": "Redis"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "KDevelop4"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "Bazaar"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"name": "Linux"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"name": "Windows"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"name": "XilinxISE"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "Lazarus"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"name": "EiffelStudio"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"name": "Anjuta"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"name": "Vim"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"name": "Otto"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"name": "MicrosoftOffice"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"name": "LibreOffice"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"name": "SBT"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "MonoDevelop"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"name": "SVN"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"name": "FlexBuilder"
|
|
552
|
+
}
|
|
553
|
+
]
|
|
554
|
+
```
|
|
555
|
+
|
|
556
|
+
## Single gitignore template
|
|
557
|
+
|
|
558
|
+
Get a single gitignore template.
|
|
559
|
+
|
|
560
|
+
```
|
|
561
|
+
GET /templates/gitignores/:key
|
|
562
|
+
```
|
|
563
|
+
|
|
564
|
+
| Attribute | Type | Required | Description |
|
|
565
|
+
| ---------- | ------ | -------- | ----------- |
|
|
566
|
+
| `key` | string | yes | The key of the gitignore template |
|
|
567
|
+
|
|
568
|
+
```bash
|
|
569
|
+
curl https://gitlab.example.com/api/v3/templates/gitignores/Ruby
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
Example response:
|
|
573
|
+
|
|
574
|
+
```json
|
|
575
|
+
{
|
|
576
|
+
"name": "Ruby",
|
|
577
|
+
"content": "*.gem\n*.rbc\n/.config\n/coverage/\n/InstalledFiles\n/pkg/\n/spec/reports/\n/spec/examples.txt\n/test/tmp/\n/test/version_tmp/\n/tmp/\n\n# Used by dotenv library to load environment variables.\n# .env\n\n## Specific to RubyMotion:\n.dat*\n.repl_history\nbuild/\n*.bridgesupport\nbuild-iPhoneOS/\nbuild-iPhoneSimulator/\n\n## Specific to RubyMotion (use of CocoaPods):\n#\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control\n#\n# vendor/Pods/\n\n## Documentation cache and generated files:\n/.yardoc/\n/_yardoc/\n/doc/\n/rdoc/\n\n## Environment normalization:\n/.bundle/\n/vendor/bundle\n/lib/bundler/man/\n\n# for a library or gem, you might want to ignore these files since the code is\n# intended to run in multiple environments; otherwise, check them in:\n# Gemfile.lock\n# .ruby-version\n# .ruby-gemset\n\n# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:\n.rvmrc\n"
|
|
578
|
+
}
|
|
579
|
+
```
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# GitLab CI YMLs
|
|
2
|
+
|
|
3
|
+
## List GitLab CI YML templates
|
|
4
|
+
|
|
5
|
+
Get all GitLab CI YML templates.
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
GET /templates/gitlab_ci_ymls
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
curl https://gitlab.example.com/api/v3/templates/gitlab_ci_ymls
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Example response:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
[
|
|
19
|
+
{
|
|
20
|
+
"name": "C++"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Docker"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "Elixir"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "LaTeX"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Grails"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "Rust"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "Nodejs"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "Ruby"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "Scala"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "Maven"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "Harp"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Pelican"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "Hyde"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "Nanoc"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "Octopress"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "JBake"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "HTML"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "Hugo"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "Metalsmith"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "Hexo"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "Lektor"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "Doxygen"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "Brunch"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "Jekyll"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "Middleman"
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## Single GitLab CI YML template
|
|
98
|
+
|
|
99
|
+
Get a single GitLab CI YML template.
|
|
100
|
+
|
|
101
|
+
```
|
|
102
|
+
GET /templates/gitlab_ci_ymls/:key
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
| Attribute | Type | Required | Description |
|
|
106
|
+
| ---------- | ------ | -------- | ----------- |
|
|
107
|
+
| `key` | string | yes | The key of the GitLab CI YML template |
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
curl https://gitlab.example.com/api/v3/templates/gitlab_ci_ymls/Ruby
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Example response:
|
|
114
|
+
|
|
115
|
+
```json
|
|
116
|
+
{
|
|
117
|
+
"name": "Ruby",
|
|
118
|
+
"content": "# This file is a template, and might need editing before it works on your project.\n# Official language image. Look for the different tagged releases at:\n# https://hub.docker.com/r/library/ruby/tags/\nimage: \"ruby:2.3\"\n\n# Pick zero or more services to be used on all builds.\n# Only needed when using a docker container to run your tests in.\n# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-service\nservices:\n - mysql:latest\n - redis:latest\n - postgres:latest\n\nvariables:\n POSTGRES_DB: database_name\n\n# Cache gems in between builds\ncache:\n paths:\n - vendor/ruby\n\n# This is a basic example for a gem or script which doesn't use\n# services such as redis or postgres\nbefore_script:\n - ruby -v # Print out ruby version for debugging\n # Uncomment next line if your rails app needs a JS runtime:\n # - apt-get update -q && apt-get install nodejs -yqq\n - gem install bundler --no-ri --no-rdoc # Bundler is not installed with the image\n - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby\n\n# Optional - Delete if not using `rubocop`\nrubocop:\n script:\n - rubocop\n\nrspec:\n script:\n - rspec spec\n\nrails:\n variables:\n DATABASE_URL: \"postgresql://postgres:postgres@postgres:5432/$POSTGRES_DB\"\n script:\n - bundle exec rake db:migrate\n - bundle exec rake db:seed\n - bundle exec rake test\n"
|
|
119
|
+
}
|
|
120
|
+
```
|