class Faker::Movies::BackToTheFuture

Public Class Methods

character() click to toggle source

Produces a character from Back to the Future.

@return [String]

@example

Faker::Movies::BackToTheFuture.character #=> "Marty McFly"

@faker.version 1.8.5

# File lib/faker/movies/back_to_the_future.rb, line 16
def character
  fetch('back_to_the_future.characters')
end
date() click to toggle source

Produces a date from Back to the Future.

@return [String]

@example

Faker::Movies::BackToTheFuture.date #=> "November 5, 1955"

@faker.version 1.8.5

# File lib/faker/movies/back_to_the_future.rb, line 29
def date
  fetch('back_to_the_future.dates')
end
quote() click to toggle source

Produces a quote from Back to the Future.

@return [String]

@example

Faker::Movies::BackToTheFuture.quote
  #=> "Roads? Where we're going, we don't need roads."

@faker.version 1.8.5

# File lib/faker/movies/back_to_the_future.rb, line 43
def quote
  fetch('back_to_the_future.quotes')
end