Class: Faker::TvShows::TwinPeaks

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/tv_shows/twin_peaks.rb

Constant Summary

Constants inherited from Base

Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters

Class Method Summary collapse

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, translate, unique, with_locale

Class Method Details

.characterString

Produces a character from Twin Peaks.

Examples:

Faker::TvShows::TwinPeaks.character #=> "Dale Cooper"

Returns:

  • (String)

Available since:

  • 1.7.0



18
19
20
# File 'lib/faker/tv_shows/twin_peaks.rb', line 18

def character
  fetch('twin_peaks.characters')
end

.locationString

Produces a location from Twin Peaks.

Examples:

Faker::TvShows::TwinPeaks.location #=> "Black Lodge"

Returns:

  • (String)

Available since:

  • 1.7.0



31
32
33
# File 'lib/faker/tv_shows/twin_peaks.rb', line 31

def location
  fetch('twin_peaks.locations')
end

.quoteString

Produces a quote from Twin Peaks.

Examples:

Faker::TvShows::TwinPeaks.quote
  #=> "The owls are not what they seem."

Returns:

  • (String)

Available since:

  • 1.7.0



45
46
47
# File 'lib/faker/tv_shows/twin_peaks.rb', line 45

def quote
  fetch('twin_peaks.quotes')
end