Class: Resume::ResumeCore

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

Overview

The core elemens of the resume

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#contact_infoObject

Contact info, such as name and address



7
8
9
# File 'lib/resume.rb', line 7

def contact_info
  @contact_info
end

#headlineObject

Headline statement (String)



9
10
11
# File 'lib/resume.rb', line 9

def headline
  @headline
end

#nameObject

The name of this resume core, for conditional creation



13
14
15
# File 'lib/resume.rb', line 13

def name
  @name
end

#summaryObject

Summary of qualifications (String)



11
12
13
# File 'lib/resume.rb', line 11

def summary
  @summary
end

Class Method Details

.scaffoldObject



15
16
17
18
19
20
21
# File 'lib/resume.rb', line 15

def ResumeCore.scaffold
    core = ResumeCore.new
    core.contact_info = ContactInfo.scaffold
    core.headline = "Sum up yourself here in this headline"
    core.summary = "Provide a somewhat longer summary, in paragraph form, of why you are so awesome"
    core
end