Method: LabClient::Pipelines#show

Defined in:
lib/labclient/pipelines/show.rb

#show(project_id, pipeline_id) ⇒ Object



19
20
21
22
23
24
# File 'lib/labclient/pipelines/show.rb', line 19

def show(project_id, pipeline_id)
  project_id = format_id(project_id)
  pipeline_id = format_id(pipeline_id)

  client.request(:get, "projects/#{project_id}/pipelines/#{pipeline_id}", Pipeline)
end