Class: CSVObject
- Inherits:
-
Object
- Object
- CSVObject
- Defined in:
- lib/html_compilation/classes/setup/retrieval.rb
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
-
#error_description ⇒ Object
Returns the value of attribute error_description.
-
#error_warning ⇒ Object
Returns the value of attribute error_warning.
-
#guideline ⇒ Object
Returns the value of attribute guideline.
-
#html_path ⇒ Object
Returns the value of attribute html_path.
Instance Method Summary collapse
-
#initialize(error_warning, guideline, error_description, content, html_path) ⇒ CSVObject
constructor
A new instance of CSVObject.
Constructor Details
#initialize(error_warning, guideline, error_description, content, html_path) ⇒ CSVObject
Returns a new instance of CSVObject.
83 84 85 86 87 88 89 |
# File 'lib/html_compilation/classes/setup/retrieval.rb', line 83 def initialize(error_warning, guideline, error_description, content, html_path) @error_warning = error_warning @guideline = guideline @error_description = error_description @content = content @html_path = html_path end |
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
81 82 83 |
# File 'lib/html_compilation/classes/setup/retrieval.rb', line 81 def content @content end |
#error_description ⇒ Object
Returns the value of attribute error_description.
81 82 83 |
# File 'lib/html_compilation/classes/setup/retrieval.rb', line 81 def error_description @error_description end |
#error_warning ⇒ Object
Returns the value of attribute error_warning.
81 82 83 |
# File 'lib/html_compilation/classes/setup/retrieval.rb', line 81 def error_warning @error_warning end |
#guideline ⇒ Object
Returns the value of attribute guideline.
81 82 83 |
# File 'lib/html_compilation/classes/setup/retrieval.rb', line 81 def guideline @guideline end |
#html_path ⇒ Object
Returns the value of attribute html_path.
81 82 83 |
# File 'lib/html_compilation/classes/setup/retrieval.rb', line 81 def html_path @html_path end |