Module: FFaker::Music
Instance Method Summary
collapse
const_missing, k, luhn_check, underscore, unique
#fetch_sample, #rand, #shuffle
Instance Method Details
[View source]
12
13
14
|
# File 'lib/ffaker/music.rb', line 12
def album
fetch_sample(ALBUMS)
end
|
[View source]
16
17
18
|
# File 'lib/ffaker/music.rb', line 16
def artist
fetch_sample(ARTISTS)
end
|
[View source]
8
9
10
|
# File 'lib/ffaker/music.rb', line 8
def genre
fetch_sample(GENRES)
end
|
[View source]
20
21
22
|
# File 'lib/ffaker/music.rb', line 20
def song
fetch_sample(SONGS)
end
|