Class: Resume::ResumeCore
- Inherits:
-
Object
- Object
- Resume::ResumeCore
- Defined in:
- lib/resume.rb
Overview
The core elemens of the resume
Instance Attribute Summary collapse
-
#contact_info ⇒ Object
Contact info, such as name and address.
-
#headline ⇒ Object
Headline statement (String).
-
#name ⇒ Object
The name of this resume core, for conditional creation.
-
#summary ⇒ Object
Summary of qualifications (String).
Class Method Summary collapse
Instance Attribute Details
#contact_info ⇒ Object
Contact info, such as name and address
7 8 9 |
# File 'lib/resume.rb', line 7 def contact_info @contact_info end |
#headline ⇒ Object
Headline statement (String)
9 10 11 |
# File 'lib/resume.rb', line 9 def headline @headline end |
#name ⇒ Object
The name of this resume core, for conditional creation
13 14 15 |
# File 'lib/resume.rb', line 13 def name @name end |
#summary ⇒ Object
Summary of qualifications (String)
11 12 13 |
# File 'lib/resume.rb', line 11 def summary @summary end |
Class Method Details
.scaffold ⇒ Object
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 |