class Mindee::Product::Resume::ResumeV1Document

def education_to_s

Returns:
  • (String) -
def education_to_s
  return '' if @education.empty?
  line_items = @education.map(&:to_table_line).join("\n#{education_separator('-')}\n  ")
  out_str = String.new
  out_str << "\n#{education_separator('-')}"
  out_str << "\n  |"
  out_str << ' Domain          |'
  out_str << ' Degree                    |'
  out_str << ' End Month |'
  out_str << ' End Year |'
  out_str << ' School                    |'
  out_str << ' Start Month |'
  out_str << ' Start Year |'
  out_str << "\n#{education_separator('=')}"
  out_str << "\n  #{line_items}"
  out_str << "\n#{education_separator('-')}"
  out_str
end