class Faker::Games::Myst
Public Class Methods
age()
click to toggle source
Produces the name of an age from Myst
.
@return [String]
@example
Faker::Games::Myst.age #=> "Relto"
@faker.version 1.9.0
# File lib/faker/games/myst.rb, line 42 def age fetch('games.myst.ages') end
character()
click to toggle source
Produces the name of a character from Myst
.
@return [String]
@example
Faker::Games::Myst.character #=> "Gehn"
@faker.version 1.9.0
# File lib/faker/games/myst.rb, line 55 def character fetch('games.myst.characters') end
creature()
click to toggle source
Produces the name of a creature from Myst
.
@return [String]
@example
Faker::Games::Myst.creature #=> "squee"
@faker.version 1.9.0
# File lib/faker/games/myst.rb, line 29 def creature fetch('games.myst.creatures') end
game()
click to toggle source
Produces the name of a game from the Myst
series.
@return [String]
@example
Faker::Games::Myst.game #=> "Myst III: Exile"
@faker.version 1.9.0
# File lib/faker/games/myst.rb, line 16 def game fetch('games.myst.games') end
quote()
click to toggle source
Produces a quote from Myst
.
@return [String]
@example
Faker::Games::Myst.quote #=> "I realized, the moment I fell into the fissure, that the Book would not be destroyed as I had planned."
@faker.version 1.9.0
# File lib/faker/games/myst.rb, line 68 def quote fetch('games.myst.quotes') end