Class: PuppetForgeServer::Http::HttpClient

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet_forge_server/http/http_client.rb

Instance Method Summary collapse

Instance Method Details

#download(url) ⇒ Object



27
28
29
# File 'lib/puppet_forge_server/http/http_client.rb', line 27

def download(url)
  open_uri(url)
end

#get(url) ⇒ Object



23
24
25
# File 'lib/puppet_forge_server/http/http_client.rb', line 23

def get(url)
  open_uri(url).read
end