class Resume::Resume

Attributes

about[R]
jobs[R]
schools[R]
sections[R]

Public Class Methods

new(&block) click to toggle source

Starts a resume definition block

# File lib/resume.rb, line 20
def initialize &block
  rh = ResumeHandler.new
  block.arity < 1 ? rh.instance_eval(&block) : block.call(rh)
  @about = rh.about
  @schools = rh.schools
  @jobs = rh.jobs
  @sections = rh.sections
end