class Faker::Music::Hiphop

Public Class Methods

artist() click to toggle source

Produces the name of a Hip Hop Artist

@return [String]

@example

Faker::Music::Hiphop.artist #=> "Lil Wayne"

@faker.version next

# File lib/faker/music/hiphop.rb, line 16
def artist
  fetch('hiphop.artist')
end
groups() click to toggle source

Produces the name of a Hip Hop Group

@return [String]

@example

Faker::Music::Hiphop.groups #=> "OVO"

@faker.version next

# File lib/faker/music/hiphop.rb, line 29
def groups
  fetch('hiphop.groups')
end
subgenres() click to toggle source

Produces the name of a Hip Hop Subgenre

@return [String]

@example

Faker::Music::Hiphop.subgeneres #=> "Alternative"

@faker.version next

# File lib/faker/music/hiphop.rb, line 42
def subgenres
  fetch('hiphop.subgenres')
end