virgild-resumetools 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/examples/sample.pdf +430 -649
- data/examples/sample.resume +0 -13
- data/lib/resume/pdf.rb +9 -8
- data/lib/resumetools/version.rb +2 -2
- metadata +1 -1
data/examples/sample.resume
CHANGED
|
@@ -54,11 +54,6 @@ developing innovative solutions.
|
|
|
54
54
|
processing (OLTP) monitor, and redundant array of inexpensive disks
|
|
55
55
|
(RAID) technology.
|
|
56
56
|
|
|
57
|
-
- Conducted extensive trade studies of a large number of vendors that offer
|
|
58
|
-
leading-edge technologies; these studies identified proven (low-risk)
|
|
59
|
-
implementations of SMP and RDBMS systems that met stringent performance
|
|
60
|
-
and availability criteria.
|
|
61
|
-
|
|
62
57
|
+ Systems Analyst
|
|
63
58
|
>O Business Consultants, Inc.
|
|
64
59
|
>L Washington, DC
|
|
@@ -71,8 +66,6 @@ developing innovative solutions.
|
|
|
71
66
|
Demonstration, and Training databases onto a single server, maximizing
|
|
72
67
|
the use of the laboratory's computing resources.
|
|
73
68
|
|
|
74
|
-
- Brought the Smithsonian Laboratory on-line with the Internet.
|
|
75
|
-
|
|
76
69
|
- Successfully integrated and delivered to Amnesty International an
|
|
77
70
|
$80,000 HP 9000/750 Server consisting of 8 Gigabytes of disk space
|
|
78
71
|
and 9 software systems that required extensive porting work and
|
|
@@ -129,12 +122,6 @@ developing innovative solutions.
|
|
|
129
122
|
- Transmission Control Protocol/Internet Protocol (TCP/IP);
|
|
130
123
|
Technology Systems Institute.
|
|
131
124
|
|
|
132
|
-
- LAN Interconnection Using Bridges, Routers, and Gateways;
|
|
133
|
-
Information Systems Institute.
|
|
134
|
-
|
|
135
|
-
- OSI X.400/X.500 Messaging and Directory Service Protocols;
|
|
136
|
-
Communication Technologies, Inc.
|
|
137
|
-
|
|
138
125
|
- US Army Signal Officer Advanced Course, US Army Signal Center,
|
|
139
126
|
Georgia; Honor Graduate.
|
|
140
127
|
|
data/lib/resume/pdf.rb
CHANGED
|
@@ -40,7 +40,7 @@ module ResumeTools
|
|
|
40
40
|
:section => 10,
|
|
41
41
|
:para => 9,
|
|
42
42
|
:item => 9,
|
|
43
|
-
:period => 12
|
|
43
|
+
:period => 12
|
|
44
44
|
}
|
|
45
45
|
DATE_FORMAT = "%B, %Y"
|
|
46
46
|
|
|
@@ -67,14 +67,15 @@ module ResumeTools
|
|
|
67
67
|
pdf.font("Helvetica", :style => :normal, :size => FONT_SIZES[:default], :kerning => true)
|
|
68
68
|
|
|
69
69
|
# Name
|
|
70
|
-
pdf.text self.full_name, :style => :bold, :size => FONT_SIZES[:header]
|
|
70
|
+
pdf.text self.full_name, :style => :bold, :size => FONT_SIZES[:header], :align => :center
|
|
71
71
|
|
|
72
72
|
# Contact info
|
|
73
|
-
pdf.text self.
|
|
74
|
-
pdf.text
|
|
75
|
-
pdf.text
|
|
76
|
-
|
|
77
|
-
pdf.
|
|
73
|
+
pdf.text [self.address1, self.address2].join(", "), :align => :center
|
|
74
|
+
pdf.text [telephone, email].join(" • "), :align => :center
|
|
75
|
+
pdf.text url, :align => :center
|
|
76
|
+
|
|
77
|
+
pdf.pad_bottom 20 do
|
|
78
|
+
end
|
|
78
79
|
|
|
79
80
|
# Sections
|
|
80
81
|
self.sections.each do |section|
|
|
@@ -116,7 +117,7 @@ module ResumeTools
|
|
|
116
117
|
detail_line << dates unless dates.blank?
|
|
117
118
|
|
|
118
119
|
pdf.span(pdf.bounds.width - 10, :position => 10) do
|
|
119
|
-
pdf.text(detail_line.join("
|
|
120
|
+
pdf.text(detail_line.join(" • "), :size => FONT_SIZES[:default])
|
|
120
121
|
end
|
|
121
122
|
|
|
122
123
|
# Period items
|
data/lib/resumetools/version.rb
CHANGED