Class: Stackup::Source
- Inherits:
-
Object
- Object
- Stackup::Source
- 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
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Instance Method Summary collapse
- #body ⇒ Object
- #data ⇒ Object
-
#initialize(location) ⇒ Source
constructor
A new instance of Source.
Constructor Details
#initialize(location) ⇒ Source
Returns a new instance of Source.
11 12 13 |
# File 'lib/stackup/source.rb', line 11 def initialize(location) @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
15 16 17 |
# File 'lib/stackup/source.rb', line 15 def location @location end |
Instance Method Details
#body ⇒ Object
17 18 19 |
# File 'lib/stackup/source.rb', line 17 def body @body ||= read end |
#data ⇒ Object
21 22 23 |
# File 'lib/stackup/source.rb', line 21 def data @data ||= parse_body end |