Project

paladins

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby wrapper for Hi-Rez Studios Paladins API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
>= 0
~> 10.0
~> 3.0

Runtime

>= 0
 Project Readme

Paladins

This gem wraps Hi-Rez Studios' Paladins API.

See Paladins API DOCS for more information.

Status

Alpha (see CHANGELOG.md)

Installation

Add this line to your application's Gemfile:

gem 'paladins'

And then execute:

$ bundle

Or install it yourself as:

$ gem install paladins

Usage

Before everything, make sure you get valid dev_id and auth_key by submitting a request here. You will get an email with keys and API instruction.

Create an initializer in config/initializers to set your dev_id and auth_key in a block:

Paladins.configure do |config|
  config.dev_id = ''
  config.auth_key = ''
end

Paladins.getfoobar

This wrapper use the same methods' name listed in the official Hi-Rez Studios' Paladins API see CHANGELOG.md to see which methods are supported;

e.g, to get Player's info you can call Paladins.getplayer('player_name') from anywhere in your app.

For an exhaustive list of methods' name, check the official Paladins API DOCS.

Development

You are welcome to contribute to this gem!

Make sure to export your keys as ENV variables (note that var names must be exactly PALADINS_DEV_ID and PALADINS_AUTH_KEY)

export PALADINS_DEV_ID=xxxx
export PALADINS_AUTH_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests (currently failing). You can also run bin/console for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run bundle exec rake install.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/davideghz/paladins.

License

The gem is available as open source under the terms of the MIT License.