class Faker::TvShows::TheFreshPrinceOfBelAir

Public Class Methods

actor() click to toggle source

Produces a actor from The Fresh Prince of Bel-Air.

@return [String]

@example

Faker::TvShows::TheFreshPrinceOfBelAir.actor #=> "Quincy Jones"

@faker.version next

# File lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb, line 31
def actor
  fetch('the_fresh_prince_of_bel_air.actors')
end
character() click to toggle source

Produces a character from The Fresh Prince of Bel-Air.

@return [String]

@example

Faker::TvShows::TheFreshPrinceOfBelAir.character #=> "Will Smith"

@faker.version 1.8.3

# File lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb, line 18
def character
  fetch('the_fresh_prince_of_bel_air.characters')
end
quote() click to toggle source

Produces a quote from The Fresh Prince of Bel-Air.

@return [String]

@example

Faker::TvShows::TheFreshPrinceOfBelAir.quote
  #=> "Girl, you look so good, I would marry your brother just to get in your family."

@faker.version 1.8.3

# File lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb, line 45
def quote
  fetch('the_fresh_prince_of_bel_air.quotes')
end