class Faker::TvShows::Buffy

Public Class Methods

big_bad() click to toggle source

Produces a big bad from Buffy the Vampire Slayer.

@return [String]

@example

Faker::TvShows::Buffy.big_bad #=> "Glory"

@faker.version 1.9.2

# File lib/faker/tv_shows/buffy.rb, line 57
def big_bad
  fetch('buffy.big_bads')
end
celebrity() click to toggle source

Produces a celebrity from Buffy the Vampire Slayer.

@return [String]

@example

Faker::TvShows::Buffy.celebrity #=> "John Ritter"

@faker.version 1.9.2

# File lib/faker/tv_shows/buffy.rb, line 44
def celebrity
  fetch('buffy.celebrities')
end
character() click to toggle source

Produces a character from Buffy the Vampire Slayer.

@return [String]

@example

Faker::TvShows::Buffy.character #=> "Buffy Summers"

@faker.version 1.9.2

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

Produces an episode from Buffy the Vampire Slayer.

@return [String]

@example

Faker::TvShows::Buffy.episode #=> "Once More, with Feeling"

@faker.version 1.9.2

# File lib/faker/tv_shows/buffy.rb, line 70
def episode
  fetch('buffy.episodes')
end
quote() click to toggle source

Produces a quote from Buffy the Vampire Slayer.

@return [String]

@example

Faker::TvShows::Buffy.quote #=> "If the apocalypse comes, beep me."

@faker.version 1.9.2

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