class Faker::Movies::Lebowski

Public Class Methods

actor() click to toggle source

Produces an actor from The Big Lebowski.

@return [String]

@example

Faker::Movies::Lebowski.actor #=> "John Goodman"

@faker.version 1.8.8

# File lib/faker/movies/lebowski.rb, line 16
def actor
  fetch('lebowski.actors')
end
character() click to toggle source

Produces a character from The Big Lebowski.

@return [String]

@example

Faker::Movies::Lebowski.character #=> "Jackie Treehorn"

@faker.version 1.8.8

# File lib/faker/movies/lebowski.rb, line 29
def character
  fetch('lebowski.characters')
end
quote() click to toggle source

Produces a quote from The Big Lebowski.

@return [String]

@example

Faker::Movies::Lebowski.quote #=> "Forget it, Donny, you're out of your element!"

@faker.version 1.8.8

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