class FortuneTeller::Person

Representation of a person being simulated with FortuneTeller

Attributes

birthday[R]
filing_status[R]
gender[R]

Public Class Methods

new(gender:, birthday:, filing_status:) click to toggle source
# File lib/fortuneteller/person.rb, line 5
def initialize(gender:, birthday:, filing_status:)
  @gender = gender
  @birthday = birthday
  @filing_status = filing_status
end