Class: Faker::Movie

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/movies/movie.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

.quoteString

Produces a quote from a movie.

Examples:

Faker::Movie.quote #=> "Bumble bee tuna"

Returns:

  • (String)

Available since:

  • 1.8.1



28
29
30
# File 'lib/faker/movies/movie.rb', line 28

def quote
  fetch('movie.quote')
end

.titleString

Produces a title from a movie.

Examples:

Faker::Movie.title #=> "The Lord of the Rings: The Two Towers"

Returns:

  • (String)

Available since:

  • 2.13.0



15
16
17
# File 'lib/faker/movies/movie.rb', line 15

def title
  fetch('movie.title')
end