class Faker::Music::Rush

Public Class Methods

album() click to toggle source

Produces the name of an album by Rush

@return [String]

@example

Faker::Music::Rush.album #=> "Hold Your Fire"

@faker.version 2.13.0

# File lib/faker/music/rush.rb, line 31
def album
  fetch('rush.albums')
end
player() click to toggle source

Produces the name of a member of Rush

@return [String]

@example

Faker::Music::Rush.player #=> "Geddy Lee"

@faker.version 2.13.0

# File lib/faker/music/rush.rb, line 18
def player
  fetch('rush.players')
end