Class: LeukFaker::Names

Inherits:
Object
  • Object
show all
Defined in:
lib/faker/name.rb

Class Method Summary collapse

Class Method Details

.firstnameObject



5
6
7
# File 'lib/faker/name.rb', line 5

def firstname
  FIRSTNAMES.rand
end

.lastnameObject



9
10
11
# File 'lib/faker/name.rb', line 9

def lastname
  LASTNAMES.rand
end

.nicknameObject



13
14
15
# File 'lib/faker/name.rb', line 13

def nickname
  NICKNAMES.rand + ' ' + SUFFIXES.rand
end