class ResumeTools::Item

Item

Represents an item in a period or section. Items are usually bulleted items that are listed in order

Attributes

text[RW]

The item text

Public Class Methods

new(props={}) click to toggle source
# File lib/resumetools/resume/resume.rb, line 303
def initialize(props={})
  @text = props[:text] || ""
end