class Faker::Music::PearlJam
Public Class Methods
album()
click to toggle source
Produces the name of an album by Pearl Jam.
@return [String]
@example
Faker::Music::PearlJam.album #=> "Ten"
@faker.version 2.13.0
# File lib/faker/music/pearl_jam.rb, line 31 def album fetch('pearl_jam.albums') end
musician()
click to toggle source
Produces the name of a member of Pearl Jam (current and former)
@return [String]
@example
Faker::Music::PearlJam.musician #=> "Eddie Vedder"
@faker.version 2.13.0
# File lib/faker/music/pearl_jam.rb, line 18 def musician fetch('pearl_jam.musicians') end
song()
click to toggle source
Produces the name of a song by Pearl Jam.
@return [String]
@example
Faker::Music::PearlJam.song #=> "Even Flow"
@faker.version 2.13.0
# File lib/faker/music/pearl_jam.rb, line 44 def song fetch('pearl_jam.songs') end