class Faker::TvShows::TheOffice

Public Class Methods

character() click to toggle source

Produces a character from The Office.

@return [String]

@example

Faker::TvShows::TheOffice.character #=> "Michael Scott"

@faker.version next

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

Produces a quote from The Office.

@return [String]

@example

Faker::TvShows::TheOffice.quote #=> "Identity theft is not a joke, Jim! Millions of families suffer every year."

@faker.version next

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