class Faker::Movies::TheRoom
Public Class Methods
actor()
click to toggle source
Produces an actor from The Room (2003).
@return [String]
@example
Faker::Movies::Room.actor #=> "Tommy Wiseau"
@faker.version next
# File lib/faker/movies/the_room.rb, line 16 def actor fetch('the_room.actors') end
character()
click to toggle source
Produces a character from The Room (2003).
@return [String]
@example
Faker::Movies::Room.character #=> "Johnny"
@faker.version next
# File lib/faker/movies/the_room.rb, line 29 def character fetch('the_room.characters') end
location()
click to toggle source
Produces a location from The Room (2003).
@return [String]
@example
Faker::Movies::Room.location #=> "Johnny's Apartment"
@faker.version next
# File lib/faker/movies/the_room.rb, line 42 def location fetch('the_room.locations') end
quote()
click to toggle source
Produces a quote from The Room (2003).
@return [String]
@example
Faker::Movies::Room.quote #=> "You're lying, I never hit you. You are tearing me apart, Lisa!"
@faker.version next
# File lib/faker/movies/the_room.rb, line 57 def quote fetch('the_room.quotes') end