class Faker::TvShows::VentureBros

Public Class Methods

character() click to toggle source

Produces a character from The Venture Bros.

@return [String]

@example

Faker::TvShows::VentureBros.character #=> "Scaramantula"

@faker.version 1.8.3

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

Produces an organization from The Venture Bros.

@return [String]

@example

Faker::TvShows::VentureBros.organization
  #=> "Guild of Calamitous Intent"

@faker.version 1.8.3

# File lib/faker/tv_shows/venture_bros.rb, line 32
def organization
  fetch('venture_bros.organization')
end
quote() click to toggle source

Produces a quote from The Venture Bros.

@return [String]

@example

Faker::TvShows::VentureBros.quote
  #=> "Revenge, like gazpacho soup, is best served cold, precise, and merciless."

@faker.version 1.8.3

# File lib/faker/tv_shows/venture_bros.rb, line 59
def quote
  fetch('venture_bros.quote')
end
vehicle() click to toggle source

Produces a vehicle from The Venture Bros.

@return [String]

@example

Faker::TvShows::VentureBros.vehicle #=> "Monarchmobile"

@faker.version 1.8.3

# File lib/faker/tv_shows/venture_bros.rb, line 45
def vehicle
  fetch('venture_bros.vehicle')
end