class Faker::TvShows::HeyArnold

Public Class Methods

character() click to toggle source

Produces a character from Hey Arnold!

@return [String]

@example

Faker::TvShows::HeyArnold.character #=> "Arnold"

@faker.version 1.8.0

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

Produces a location from Hey Arnold!

@return [String]

@example

Faker::TvShows::HeyArnold.location #=> "Big Bob's Beeper Emporium"

@faker.version 1.8.0

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

Produces a quote from Hey Arnold!

@return [String]

@example

Faker::TvShows::HeyArnold.quote #=> "Stoop Kid's afraid to leave his stoop!"

@faker.version 1.8.0

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