class Faker::TvShows::TheITCrowd

Public Class Methods

actor() click to toggle source

Produces an actor from The IT Crowd.

@return [String]

@example

Faker::TvShows::TheITCrowd.actor #=> "Chris O'Dowd"

@faker.version 1.9.0

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

Produces a character from The IT Crowd.

@return [String]

@example

Faker::TvShows::TheITCrowd.character #=> "Roy Trenneman"

@faker.version 1.9.0

# File lib/faker/tv_shows/the_it_crowd.rb, line 31
def character
  fetch('the_it_crowd.characters')
end
email() click to toggle source

Produces an email from The IT Crowd.

@return [String]

@example

Faker::TvShows::TheITCrowd.email #=> "roy.trenneman@reynholm.test"

@faker.version 1.9.0

# File lib/faker/tv_shows/the_it_crowd.rb, line 44
def email
  fetch('the_it_crowd.emails')
end
quote() click to toggle source

Produces a quote from The IT Crowd.

@return [String]

@example

Faker::TvShows::TheITCrowd.quote
  #=> "Hello, IT. Have you tried turning it off and on again?"

@faker.version 1.9.0

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