class Faker::Music::SmashingPumpkins
Public Class Methods
album()
click to toggle source
Produces the name of an album by the Smashing Pumpkins.
@return [String]
@example
Faker::Music::SmashingPumpkins.album #=> "Siamese Dream"
@faker.version next
# File lib/faker/music/smashing_pumpkins.rb, line 31 def album fetch('smashing_pumpkins.albums') end
lyric()
click to toggle source
Produces a random Smashing Pumpkins song lyric.
@return [String]
@example
Faker::Music::SmashingPumpkins.lyric #=> "Despite all my rage, I am still just a rat in a cage" Faker::Music::SmashingPumpkins.lyric #=> "Breathin' underwater, and livin' under glass"
@faker.version next
# File lib/faker/music/smashing_pumpkins.rb, line 45 def lyric fetch('smashing_pumpkins.lyric') end
musician()
click to toggle source
Produces the name of a member of the Smashing Pumpkins (current and former)
@return [String]
@example
Faker::Music::SmashingPumpkins.musician #=> "Billy Corgan"
@faker.version next
# File lib/faker/music/smashing_pumpkins.rb, line 18 def musician fetch('smashing_pumpkins.musicians') end
song()
click to toggle source
Produces the name of a song by the Smashing Pumpkins.
@return [String]
@example
Faker::Music::SmashingPumpkins.song #=> "Stand Inside My Love"
@faker.version next
# File lib/faker/music/smashing_pumpkins.rb, line 58 def song fetch('smashing_pumpkins.songs') end