class Cv::Generator::ErbData

Attributes

css_paths[RW]
education[R]
general[R]
jobs[R]
other_skills[R]
projects[R]
skills[R]

Public Class Methods

new(data) click to toggle source
# File lib/cv/generator/erb_data.rb, line 7
def initialize(data)
  @general = data['general']
  @jobs = data['jobs']
  @skills = data['skills']
  @other_skills = data['other_skills']
  @projects = data['projects']
  @education = data['education']
end

Public Instance Methods

get_binding() click to toggle source
# File lib/cv/generator/erb_data.rb, line 16
def get_binding
  binding
end