class Faker::TvShows::FamilyGuy

Public Class Methods

character() click to toggle source

Produces a character from Family Guy.

@return [String]

@example

Faker::TvShows::FamilyGuy.character #=> "Peter Griffin"

@faker.version 1.8.0

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

Produces a location from Family Guy.

@return [String]

@example

Faker::TvShows::FamilyGuy.location #=> "James Woods High"

@faker.version 1.8.0

# File lib/faker/tv_shows/family_guy.rb, line 31
def location
  fetch('family_guy.location')
end
quote() click to toggle source

Produces a quote from Family Guy.

@return [String]

@example

Faker::TvShows::FamilyGuy.quote
  #=> "It's Peanut Butter Jelly Time."

@faker.version 1.8.0

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