Conditions | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 12 |
CRAP Score | 1 |
Changes | 0 |
1 | 1 | require_relative "../output" |
|
25 | 1 | def process(pdf, resume) |
|
26 | 1 | Font.configure(pdf, resume[:font]) |
|
27 | 1 | Name.generate(pdf, resume[:name]) |
|
28 | 1 | Headline.generate(pdf, resume[:headline]) |
|
29 | 1 | Output.plain(:creating_social_media_links) |
|
30 | 1 | SocialMediaLogoSet.generate(pdf, resume[:social_media_logo_set]) |
|
31 | 1 | Output.plain(:creating_technical_skills_section) |
|
32 | 1 | TechnicalSkills.generate(pdf, resume[:technical_skills]) |
|
33 | 1 | Output.plain(:creating_employment_history_section) |
|
34 | 1 | EmploymentHistory.generate(pdf, resume[:employment_history]) |
|
35 | 1 | Output.plain(:creating_education_history_section) |
|
36 | 1 | EducationHistory.generate(pdf, resume[:education_history]) |
|
37 | end |
||
38 | end |
||
41 |