Class: Faker::TvShows::DrWho
Constant Summary
Constants inherited from Base
Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters
Class Method Summary collapse
-
.actor ⇒ String
Produces an actor from Doctor Who.
-
.catch_phrase ⇒ String
Produces a catch phrase from Doctor Who.
-
.character ⇒ String
Produces a character from Doctor Who.
-
.quote ⇒ String
Produces a quote from Doctor Who.
-
.specie ⇒ String
Produces a species from Doctor Who.
-
.the_doctor ⇒ String
Produces an iteration of The Doctor from Doctor Who.
-
.villain ⇒ String
Produces a villain from Doctor Who.
Methods inherited from Base
bothify, disable_enforce_available_locales, fetch, fetch_all, flexible, generate, letterify, method_missing, numerify, parse, rand, rand_in_range, regexify, resolve, respond_to_missing?, sample, shuffle, shuffle!, translate, unique, with_locale
Class Method Details
.actor ⇒ String
Produces an actor from Doctor Who.
44 45 46 |
# File 'lib/faker/tv_shows/dr_who.rb', line 44 def actor fetch('dr_who.actors') end |
.catch_phrase ⇒ String
Produces a catch phrase from Doctor Who.
57 58 59 |
# File 'lib/faker/tv_shows/dr_who.rb', line 57 def catch_phrase fetch('dr_who.catch_phrases') end |
.character ⇒ String
Produces a character from Doctor Who.
18 19 20 |
# File 'lib/faker/tv_shows/dr_who.rb', line 18 def character fetch('dr_who.character') end |
.quote ⇒ String
Produces a quote from Doctor Who.
70 71 72 |
# File 'lib/faker/tv_shows/dr_who.rb', line 70 def quote fetch('dr_who.quotes') end |
.specie ⇒ String
Produces a species from Doctor Who.
96 97 98 |
# File 'lib/faker/tv_shows/dr_who.rb', line 96 def specie fetch('dr_who.species') end |
.the_doctor ⇒ String
Produces an iteration of The Doctor from Doctor Who.
31 32 33 |
# File 'lib/faker/tv_shows/dr_who.rb', line 31 def the_doctor fetch('dr_who.the_doctors') end |
.villain ⇒ String
Produces a villain from Doctor Who.
83 84 85 |
# File 'lib/faker/tv_shows/dr_who.rb', line 83 def villain fetch('dr_who.villains') end |