class Faker::Show

Public Class Methods

adult_musical() click to toggle source

Produces the name of a musical for an older audience

@return [String]

@example

Faker::Alphanumeric.alpha
  #=> "West Side Story"

@faker.version 2.13.0

# File lib/faker/music/show.rb, line 16
def adult_musical
  fetch('show.adult_musical')
end
kids_musical() click to toggle source

Produces the name of a musical for a younger audience

@return [String]

@example

Faker::Alphanumeric.alpha
  #=> "Into the Woods JR."

@faker.version 2.13.0

# File lib/faker/music/show.rb, line 30
def kids_musical
  fetch('show.kids_musical')
end
play() click to toggle source

Produces the name of a play

@return [String]

@example

Faker::Alphanumeric.alpha
  #=> "Death of a Salesman"

@faker.version 2.13.0

# File lib/faker/music/show.rb, line 44
def play
  fetch('show.play')
end