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.
@@ -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
 
@@ -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.telephone if self.has_telephone?
74
- pdf.text self.email if self.has_email?
75
- pdf.text self.address1 if self.has_address1?
76
- pdf.text self.address2 if self.has_address2?
77
- pdf.text self.url if self.has_url?
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(", "), :size => FONT_SIZES[:default])
120
+ pdf.text(detail_line.join(" "), :size => FONT_SIZES[:default])
120
121
  end
121
122
 
122
123
  # Period items
@@ -28,8 +28,8 @@ unless defined? ResumeTools::VERSION
28
28
  module VERSION
29
29
  MAJOR = 0
30
30
  MINOR = 2
31
- TINY = 0
31
+ TINY = 1
32
32
  STRING = [MAJOR, MINOR, TINY].join('.')
33
33
  end
34
34
  end
35
- end
35
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: virgild-resumetools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Virgil Dimaguila