Method: LabClient::ProjectSnippets#show
- Defined in:
- lib/labclient/projects/snippets/show.rb
#show(project_id, snippet_id) ⇒ Object
Show Specific
14 15 16 17 18 |
# File 'lib/labclient/projects/snippets/show.rb', line 14 def show(project_id, snippet_id) snippet_id = format_id(snippet_id) project_id = format_id(project_id) client.request(:get, "projects/#{project_id}/snippets/#{snippet_id}", ProjectSnippet) end |