class Faker::TvShows::StrangerThings

Public Class Methods

character() click to toggle source

Produces a quote from Stranger Things.

@return [String]

@example

Faker::TvShows::StrangerThings.quote
  #=> "Friends don't lie."

@faker.version 1.9.0

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

Produces a character from Stranger Things.

@return [String]

@example

Faker::TvShows::StrangerThings.character #=> "six"

@faker.version 1.9.0

# File lib/faker/tv_shows/stranger_things.rb, line 18
def quote
  fetch('stranger_things.quote')
end