Halo Waypoint

A simple wrapper around the Halo Waypoint service that can be used for retrieving player and game information from games such as Halo 4.

Installation

Add this line to your application's Gemfile:

gem 'halo_waypoint'

And then execute:

bundle

Or install it yourself as:

gem install halo_waypoint

Usage

require 'halo_waypoint'
player = HaloWaypoint::Player.find('kevinthompson x')

player.rank_name            #=> "67"
player.favorite_weapon_name #=> "DMR"
player.xp                   #=> "186843"
player.next_rank_start_xp   #=> "214110"

Reference

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