class Faker::Movies::Ghostbusters
Public Class Methods
actor()
click to toggle source
Produces an actor from Ghostbusters
.
@return [String]
@example
Faker::Movies::Ghostbusters.actor #=> "Bill Murray"
@faker.version 1.9.2
# File lib/faker/movies/ghostbusters.rb, line 16 def actor fetch('ghostbusters.actors') end
character()
click to toggle source
Produces a character from Ghostbusters
.
@return [String]
@example
Faker::Movies::Ghostbusters.character #=> "Dr. Egon Spengler"
@faker.version 1.9.2
# File lib/faker/movies/ghostbusters.rb, line 29 def character fetch('ghostbusters.characters') end
quote()
click to toggle source
Produces a quote from Ghostbusters
.
@return [String]
@example
Faker::Movies::Ghostbusters.quote #=> "I tried to think of the most harmless thing. Something I loved from my childhood. Something that could never ever possibly destroy us. Mr. Stay Puft!"
@faker.version 1.9.2
# File lib/faker/movies/ghostbusters.rb, line 43 def quote fetch('ghostbusters.quotes') end