class Faker::Dota

Public Class Methods

hero() click to toggle source
# File lib/faker/dota.rb, line 4
def hero
  fetch('dota.hero')
end
item() click to toggle source
# File lib/faker/dota.rb, line 8
def item
  fetch('dota.item')
end
player() click to toggle source
# File lib/faker/dota.rb, line 16
def player
  fetch('dota.player')
end
quote(hero = 'abaddon') click to toggle source
# File lib/faker/dota.rb, line 20
def quote(hero = 'abaddon')
  fetch("dota.#{hero}.quote")
end
team() click to toggle source
# File lib/faker/dota.rb, line 12
def team
  fetch('dota.team')
end