module HalcyonAPI

A Ruby libary wrapper for the Vainglory API

@author Ethan Tang

Constants

RELEASE_DATE

Release date of current version

VERSION

Current gem version

Public Class Methods

new(*args) click to toggle source

Alias for VaingloryAPI::Client constructor

@overload new(api_key, region)

@param api_key (String) your Vainglory API key
@param region (String) the short name for your specified Region shard

@param (see HalcyonAPI::Client#initialize) @example Initialize a new client

client = VaingloryAPI.new('API_KEY', 'na')

@return [HalcyonAPI::Client] an instance of the client @see VaingloryAPI::Client#initialize

# File lib/halcyon_api.rb, line 17
def self.new(*args)
  Client.new(*args)
end