module FFaker::Music

Public Instance Methods

album() click to toggle source
# File lib/ffaker/music.rb, line 12
def album
  fetch_sample(ALBUMS)
end
artist() click to toggle source
# File lib/ffaker/music.rb, line 16
def artist
  fetch_sample(ARTISTS)
end
genre() click to toggle source
# File lib/ffaker/music.rb, line 8
def genre
  fetch_sample(GENRES)
end
song() click to toggle source
# File lib/ffaker/music.rb, line 20
def song
  fetch_sample(SONGS)
end