class AzureBlob::Client

def generate_uri(path)

Example: +generate_uri("#{container}/#{key}")+

Return a URI object to a resource in the container. Takes a path.
def generate_uri(path)
  URI.parse(URI::DEFAULT_PARSER.escape(File.join(host, path)))
end