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
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request