Created
July 5, 2012 01:48
-
-
Save built/3050500 to your computer and use it in GitHub Desktop.
Rearranging deck chairs on this resume.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class EzekielTemplin | |
def initialize | |
@birthdate = Date.parse('1983-06-29') | |
@gender = "male" | |
end | |
def age | |
#still derp | |
Date.today.year - @birthdate.year | |
end | |
def locations | |
["Saegertown, PA", "Audubon, PA", "Guys Mills, PA", "Philadelphia, PA", "Meadville, PA"] | |
end | |
def birthplace | |
locations.first | |
end | |
def current_location | |
locations.last | |
end | |
def jobs | |
[ | |
{ :company => "Semantic Leap", | |
:url => "N/A", | |
:title => "Founder", | |
:start_date => Date.parse('2006-09-01') }, | |
{ :company => "IP Services, Inc", | |
:url => "http://www.ipservicesinc.com/", | |
:title => "Software Developer", | |
:start_date => Date.parse('2010-05-01') } | |
] | |
end | |
def current_job | |
jobs.last | |
end | |
def bored? | |
"Bored enough to write a bio in Ruby!" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment