class Faker::TvShows::TheFreshPrinceOfBelAir

Public Class Methods

celebrity() click to toggle source

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

@return [String]

@example

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

@faker.version 1.8.3

# File lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb, line 31
def celebrity
  fetch('the_fresh_prince_of_bel_air.celebrities')
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