class Faker::Games::HeroesOfTheStorm
Public Class Methods
battleground()
click to toggle source
Produces a battleground from Heroes
of the Storm.
@return [String]
@example
Faker::Games::HeroesOfTheStorm.battleground #=> "Towers of Doom"
@faker.version 1.9.2
# File lib/faker/games/heroes_of_the_storm.rb, line 16 def battleground fetch('heroes_of_the_storm.battlegrounds') end
class()
click to toggle source
Produces a class from Heroes
of the Storm.
@return [String]
@example
Faker::Games::HeroesOfTheStorm.class #=> "Support"
@faker.version 1.9.2
# File lib/faker/games/heroes_of_the_storm.rb, line 29 def class fetch('heroes_of_the_storm.classes') end
hero()
click to toggle source
Produces a hero from Heroes
of the Storm.
@return [String]
@example
Faker::Games::HeroesOfTheStorm.hero #=> "Illidan"
@faker.version 1.9.2
# File lib/faker/games/heroes_of_the_storm.rb, line 42 def hero fetch('heroes_of_the_storm.heroes') end
quote()
click to toggle source
Produces a quote from Heroes
of the Storm.
@return [String]
@example
Faker::Games::HeroesOfTheStorm.quote #=> "MEAT!!!"
@faker.version 1.9.2
# File lib/faker/games/heroes_of_the_storm.rb, line 55 def quote fetch('heroes_of_the_storm.quotes') end