Class: Faker::Games::SuperSmashBros

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/games/super_smash_bros.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

.fighterString

Produces the name of a fighter from the Smash Bros games.

Examples:

Faker::Games::SuperSmashBros.fighter #=> "Mario"

Returns:

  • (String)

Available since:

  • 1.9.2



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

def fighter
  fetch('games.super_smash_bros.fighter')
end

.stageString

Produces the name of a stage from the Smash Bros games.

Examples:

Faker::Games::SuperSmashBros.stage #=> "Final Destination"

Returns:

  • (String)

Available since:

  • 1.9.2



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

def stage
  fetch('games.super_smash_bros.stage')
end