class Faker::Games::SonicTheHedgehog

Public Class Methods

character() click to toggle source

Produces the name of a character from Sonic the Hedgehog.

@return [String]

@example

Faker::Games::SonicTheHedgehog.character #=> "Sonic the Hedgehog"

@faker.version 1.9.2

# File lib/faker/games/sonic_the_hedgehog.rb, line 16
def character
  fetch('games.sonic_the_hedgehog.character')
end
game() click to toggle source

Produces the name of a game from the Sonic the Hedgehog series.

@return [String]

@example

Faker::Games::SonicTheHedgehog.game #=> "Waku Waku Sonic Patrol Car"

@faker.version 1.9.2

# File lib/faker/games/sonic_the_hedgehog.rb, line 42
def game
  fetch('games.sonic_the_hedgehog.game')
end
zone() click to toggle source

Produces the name of a zone from Sonic the Hedgehog.

@return [String]

@example

Faker::Games::SonicTheHedgehog.zone #=> "Green Hill Zone"

@faker.version 1.9.2

# File lib/faker/games/sonic_the_hedgehog.rb, line 29
def zone
  fetch('games.sonic_the_hedgehog.zone')
end