class Faker::TvShows::BojackHorseman

Public Class Methods

character() click to toggle source

Produces a character from BoJack Horseman.

@return [String]

@example

Faker::TvShows::BojackHorseman.character #=> "BoJack Horseman"

@faker.version 1.9.0

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

Produces a quote from BoJack Horseman.

@return [String]

@example

Faker::TvShows::BojackHorseman.quote
  #=> "Not understanding that you're a horrible person doesn't make you less of a horrible person."

@faker.version 1.9.0

# File lib/faker/tv_shows/bojack_horseman.rb, line 45
def quote
  fetch('bojack_horseman.quotes')
end
tongue_twister() click to toggle source

Produces a tongue twister from BoJack Horseman.

@return [String]

@example

Faker::TvShows::BojackHorseman.tongue_twister #=> "Did you steal a meal from Neal McBeal the Navy Seal?"

@faker.version 1.9.0

# File lib/faker/tv_shows/bojack_horseman.rb, line 31
def tongue_twister
  fetch('bojack_horseman.tongue_twisters')
end