Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 1.54 KB

README.md

File metadata and controls

65 lines (44 loc) · 1.54 KB

Dota

TravisCI Build Status

Ruby wrapper for Dota 2 WebAPI

Usage

Dota.configure do |config|
  config.api_key = 'STEAM-WEB-API-KEY'
end

You can get your api key here

Match details (GetMatchDetails API call)

Dota.match(22345678)

League listing (GetLeagueListing API call)

Dota.leagues

Live league games (GetLiveLeagueGames API call)

Dota.live_leagues

Match history (GetMatchHistory API call)

Dota.history

View profiles (GetPlayerSummaries API call)

Dota.profiles(76561197993409962)

View player bans (GetPlayerBans API call)

Dota.bans(76561197993409962)

View friends (GetFriendList API call)

Dota.friends(76561197993409962)

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request