Method: CloudFormationTool::CloudFormation::LambdaCode#fetch_from_url

Defined in:
lib/cloud_formation_tool/cloud_formation/lambda_code.rb

#fetch_from_url(uri_str) ⇒ Object



125
126
127
128
129
130
# File 'lib/cloud_formation_tool/cloud_formation/lambda_code.rb', line 125

def fetch_from_url(uri_str)
  $__fetch_cache ||= Hash.new do |h, url|
    h[url] = fetch_from_url_real(url)
  end
  $__fetch_cache[uri_str]
end