Method: FullTime::Profile#certification

Defined in:
lib/full_time/profile.rb

#certification(&block) ⇒ Object



38
39
40
41
42
43
44
45
# File 'lib/full_time/profile.rb', line 38

def certification(&block)
  if block_given?
    @certification = Certification.new
    @certification.instance_eval(&block)
  end

  @certification
end