Class: CSVObject

Inherits:
Object
  • Object
show all
Defined in:
lib/html_compilation/classes/setup/retrieval.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#contentObject

Returns the value of attribute content.



81
82
83
# File 'lib/html_compilation/classes/setup/retrieval.rb', line 81

def content
  @content
end

#error_descriptionObject

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_warningObject

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

#guidelineObject

Returns the value of attribute guideline.



81
82
83
# File 'lib/html_compilation/classes/setup/retrieval.rb', line 81

def guideline
  @guideline
end

#html_pathObject

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