class Faker::TvShows::Archer

Public Class Methods

character() click to toggle source

Produces a character from Archer.

@return [String]

@example

Faker::TvShows::Archer.character #=> "Sterling Archer"

@faker.version next

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

Produces a location from Archer.

@return [String]

@example

Faker::TvShows::Archer.location #=> "The Tuntmore Towers"

@faker.version next

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

Produces a quote from Archer.

@return [String]

@example

Faker::TvShows::Archer.quote
  #=> "You're not my supervisor!"

@faker.version next

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