Method: LabClient::ProjectVariables#show

Defined in:
lib/labclient/projects/variables/show.rb

#show(project_id, variable_id) ⇒ Object



20
21
22
23
24
25
# File 'lib/labclient/projects/variables/show.rb', line 20

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

  client.request(:get, "projects/#{project_id}/variables/#{variable_id}", ProjectVariable)
end