class Faker::Music::Phish
Public Class Methods
album()
click to toggle source
Produces the name of a album by Phish
.
@return [String]
@example
Faker::Music::Phish.album #=> "Fuego"
@faker.version 2.13.0
# File lib/faker/music/phish.rb, line 16 def album fetch('phish.albums') end
musician()
click to toggle source
Produces the name of a musician in Phish
.
@return [String]
@example
Faker::Music::Phish.musician #=> "Trey Anastasio"
@faker.version 2.13.0
# File lib/faker/music/phish.rb, line 29 def musician fetch('phish.musicians') end
song()
click to toggle source
Produces the name of a song by Phish
.
@return [String]
@example
Faker::Music::Phish.song #=> "Tweezer"
@faker.version 1.9.2
# File lib/faker/music/phish.rb, line 42 def song fetch('phish.songs') end