Class: Faker::Games::Myst
Constant Summary
Constants inherited from Base
Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters
Class Method Summary collapse
-
.age ⇒ String
Produces the name of an age from Myst.
-
.character ⇒ String
Produces the name of a character from Myst.
-
.creature ⇒ String
Produces the name of a creature from Myst.
-
.game ⇒ String
Produces the name of a game from the Myst series.
-
.quote ⇒ String
Produces a quote from Myst.
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, shuffle!, translate, unique, with_locale
Class Method Details
.age ⇒ String
Produces the name of an age from Myst.
42 43 44 |
# File 'lib/faker/games/myst.rb', line 42 def age fetch('games.myst.ages') end |
.character ⇒ String
Produces the name of a character from Myst.
55 56 57 |
# File 'lib/faker/games/myst.rb', line 55 def character fetch('games.myst.characters') end |
.creature ⇒ String
Produces the name of a creature from Myst.
29 30 31 |
# File 'lib/faker/games/myst.rb', line 29 def creature fetch('games.myst.creatures') end |
.game ⇒ String
Produces the name of a game from the Myst series.
16 17 18 |
# File 'lib/faker/games/myst.rb', line 16 def game fetch('games.myst.games') end |
.quote ⇒ String
Produces a quote from Myst.
68 69 70 |
# File 'lib/faker/games/myst.rb', line 68 def quote fetch('games.myst.quotes') end |