Class: Stackup::Source

Inherits:
Object
  • Object
show all
Defined in:
lib/stackup/source.rb

Overview

Represents a source of input, e.g. template, parameter, etc.

Defined Under Namespace

Classes: ReadError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(location) ⇒ Source

Returns a new instance of Source.



10
11
12
# File 'lib/stackup/source.rb', line 10

def initialize(location)
  @location = location
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



14
15
16
# File 'lib/stackup/source.rb', line 14

def location
  @location
end

Instance Method Details

#bodyObject



21
22
23
# File 'lib/stackup/source.rb', line 21

def body
  @body ||= read
end

#dataObject



25
26
27
# File 'lib/stackup/source.rb', line 25

def data
  @data ||= parse_body
end

#s3?Boolean

Returns:

  • (Boolean)


16
17
18
19
# File 'lib/stackup/source.rb', line 16

def s3?
  uri.scheme == "https" &&
    uri.host =~ /(^|\.)s3((\.|-)\w+-\w+-\d)?\.amazonaws\.com$/
end