class Faker::TvShows::DrWho

Public Class Methods

actor() click to toggle source

Produces an actor from Doctor Who.

@return [String]

@example

Faker::TvShows::DrWho.actor #=> "Matt Smith"

@faker.version 1.9.0

# File lib/faker/tv_shows/dr_who.rb, line 44
def actor
  fetch('dr_who.actors')
end
catch_phrase() click to toggle source

Produces a catch phrase from Doctor Who.

@return [String]

@example

Faker::TvShows::DrWho.catch_phrase #=> "Fantastic!"

@faker.version 1.8.0

# File lib/faker/tv_shows/dr_who.rb, line 57
def catch_phrase
  fetch('dr_who.catch_phrases')
end
character() click to toggle source

Produces a character from Doctor Who.

@return [String]

@example

Faker::TvShows::DrWho.character #=> "Captain Jack Harkness"

@faker.version 1.8.0

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

Produces a quote from Doctor Who.

@return [String]

@example

Faker::TvShows::DrWho.quote #=> "Lots of planets have a north!"

@faker.version 1.8.0

# File lib/faker/tv_shows/dr_who.rb, line 70
def quote
  fetch('dr_who.quotes')
end
specie() click to toggle source

Produces a species from Doctor Who.

@return [String]

@example

Faker::TvShows::DrWho.specie #=> "Dalek"

@faker.version 1.8.0

# File lib/faker/tv_shows/dr_who.rb, line 109
def specie
  fetch('dr_who.species')
end
the_doctor() click to toggle source

Produces an iteration of The Doctor from Doctor Who.

@return [String]

@example

Faker::TvShows::DrWho.the_doctor #=> "Ninth Doctor"

@faker.version 1.8.0

# File lib/faker/tv_shows/dr_who.rb, line 31
def the_doctor
  fetch('dr_who.the_doctors')
end
villain() click to toggle source

Produces a villain from Doctor Who.

@return [String]

@example

Faker::TvShows::DrWho.villain #=> "The Master"

@faker.version next

# File lib/faker/tv_shows/dr_who.rb, line 83
def villain
  fetch('dr_who.villains')
end
Also aliased as: villian
villian()

Produces a villain from Doctor Who.

@return [String]

@example

Faker::TvShows::DrWho.villian #=> "The Master"

@deprecated Use the correctly-spelled `villain` method instead.

@faker.version 1.8.0

Alias for: villain