Module: Birth
- Included in:
- Person
- Defined in:
- lib/magister/types/person.rb
Overview
Module used in the #person class
Instance Method Summary collapse
-
#day ⇒ String
The birthday of the person.
-
#lastName ⇒ String
The persons last name given at birth.
-
#preposition ⇒ String
The persons preposition given at birth.
-
#use ⇒ Boolean
Wether or not to use the users birth name.
-
#useBirthname ⇒ Boolean
Wether or not to use the users birth name.
Instance Method Details
#day ⇒ String
The birthday of the person
11 12 13 |
# File 'lib/magister/types/person.rb', line 11 def day @birthDay end |
#lastName ⇒ String
The persons last name given at birth
17 18 19 |
# File 'lib/magister/types/person.rb', line 17 def lastName @birthLastName end |
#preposition ⇒ String
The persons preposition given at birth
23 24 25 |
# File 'lib/magister/types/person.rb', line 23 def preposition @birthnamePreposition end |
#use ⇒ Boolean
Wether or not to use the users birth name
29 30 31 |
# File 'lib/magister/types/person.rb', line 29 def use @useBirthname end |
#useBirthname ⇒ Boolean
Wether or not to use the users birth name
35 36 37 |
# File 'lib/magister/types/person.rb', line 35 def useBirthname @useBirthname end |