Method: Chef::HTTP#get

Defined in:
lib/chef/http.rb

#get(path, headers = {}) ⇒ Object

Send an HTTP GET request to the path

Parameters

path

The path to GET



120
121
122
# File 'lib/chef/http.rb', line 120

def get(path, headers = {})
  request(:GET, path, headers)
end