Module: FFaker::JoJo
Instance Method Summary
collapse
const_missing, k, luhn_check, underscore, unique
#fetch_sample, #rand, #shuffle
Instance Method Details
#first_name ⇒ Object
12
13
14
|
# File 'lib/ffaker/jo_jo.rb', line 12
def first_name
fetch_sample(FIRST_NAMES)
end
|
#full_name ⇒ Object
8
9
10
|
# File 'lib/ffaker/jo_jo.rb', line 8
def full_name
fetch_sample(FULL_NAMES)
end
|
#last_name ⇒ Object
16
17
18
|
# File 'lib/ffaker/jo_jo.rb', line 16
def last_name
fetch_sample(LAST_NAMES)
end
|
#stand ⇒ Object
20
21
22
|
# File 'lib/ffaker/jo_jo.rb', line 20
def stand
fetch_sample(STANDS)
end
|