Method: Chef::Provider::RemoteFile::HTTP#initialize

Defined in:
lib/chef/provider/remote_file/http.rb

#initialize(uri, new_resource, current_resource, logger = Chef::Log.with_child) ⇒ HTTP

Parse the uri into instance variables


37
38
39
40
41
42
# File 'lib/chef/provider/remote_file/http.rb', line 37

def initialize(uri, new_resource, current_resource, logger = Chef::Log.with_child)
  @uri = uri
  @new_resource = new_resource
  @current_resource = current_resource
  @logger = logger
end