Class: Faker::Games::SuperMario

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/games/super_mario.rb

Constant Summary

Constants inherited from Base

Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters

Class Method Summary collapse

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, translate, unique, with_locale

Class Method Details

.characterString

Produces the name of a Super Mario character.

Examples:

Faker::Games::SuperMario.character #=> "Luigi"

Returns:

  • (String)

Available since:

  • next



16
17
18
# File 'lib/faker/games/super_mario.rb', line 16

def character
  fetch('games.super_mario.characters')
end

.gameString

Produces the name of a Super Mario game.

Examples:

Faker::Games::SuperMario.game #=> "Super Mario Odyssey"

Returns:

  • (String)

Available since:

  • next



29
30
31
# File 'lib/faker/games/super_mario.rb', line 29

def game
  fetch('games.super_mario.games')
end

.locationString

Produces the name of a Super Mario location.

Examples:

Faker::Games::SuperMario.location #=> "Kong City"

Returns:

  • (String)

Available since:

  • next



42
43
44
# File 'lib/faker/games/super_mario.rb', line 42

def location
  fetch('games.super_mario.locations')
end