Module: Gitlab::Client::Snippets
- Included in:
- Gitlab::Client
- Defined in:
- lib/gitlab/client/snippets.rb
Overview
Defines methods related to snippets.
Instance Method Summary collapse
-
#create_snippet(project, options = {}) ⇒ Gitlab::ObjectifiedHash
Creates a new snippet.
-
#delete_snippet(project, id) ⇒ Gitlab::ObjectifiedHash
Deletes a snippet.
-
#edit_snippet(project, id, options = {}) ⇒ Gitlab::ObjectifiedHash
Updates a snippet.
-
#snippet(project, id) ⇒ Gitlab::ObjectifiedHash
Gets information about a snippet.
-
#snippet_content(project, id) ⇒ Gitlab::ObjectifiedHash
Returns raw project snippet content as plain text.
-
#snippets(project, options = {}) ⇒ Gitlab::ObjectifiedHash
Gets a list of project’s snippets.
Instance Method Details
#create_snippet(project, options = {}) ⇒ Gitlab::ObjectifiedHash
Creates a new snippet.
44 45 46 |
# File 'lib/gitlab/client/snippets.rb', line 44 def create_snippet(project, ={}) post("/projects/#{url_encode project}/snippets", body: ) end |
#delete_snippet(project, id) ⇒ Gitlab::ObjectifiedHash
Deletes a snippet.
74 75 76 |
# File 'lib/gitlab/client/snippets.rb', line 74 def delete_snippet(project, id) delete("/projects/#{url_encode project}/snippets/#{id}") end |
#edit_snippet(project, id, options = {}) ⇒ Gitlab::ObjectifiedHash
Updates a snippet.
62 63 64 |
# File 'lib/gitlab/client/snippets.rb', line 62 def edit_snippet(project, id, ={}) put("/projects/#{url_encode project}/snippets/#{id}", body: ) end |
#snippet(project, id) ⇒ Gitlab::ObjectifiedHash
Gets information about a snippet.
27 28 29 |
# File 'lib/gitlab/client/snippets.rb', line 27 def snippet(project, id) get("/projects/#{url_encode project}/snippets/#{id}") end |
#snippet_content(project, id) ⇒ Gitlab::ObjectifiedHash
Returns raw project snippet content as plain text.
86 87 88 89 90 91 |
# File 'lib/gitlab/client/snippets.rb', line 86 def snippet_content(project, id) get("/projects/#{url_encode project}/snippets/#{id}/raw", format: nil, headers: { Accept: 'text/plain' }, parser: ::Gitlab::Request::Parser) end |
#snippets(project, options = {}) ⇒ Gitlab::ObjectifiedHash
Gets a list of project’s snippets.
15 16 17 |
# File 'lib/gitlab/client/snippets.rb', line 15 def snippets(project, ={}) get("/projects/#{url_encode project}/snippets", query: ) end |