class Greeve::Eve::AllianceList

Returns active alliances in New Eden and their member corporations.

@see eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/eve/eve_alliancelist.html

Public Class Methods

new(version, opts = {}) click to toggle source

@param version [Integer] EVE Alliance List

Calls superclass method Greeve::BaseItem::new
# File lib/greeve/eve/alliance_list.rb, line 21
def initialize(version, opts = {})
  raise ArgumentError, "not implemented, use version=1" if version == 0

  opts[:query_params] = { "version" => version }
  super(opts)
end