Module: NewEden::Eve
- Included in:
- Connection
- Defined in:
- lib/neweden/eve.rb
Constant Summary collapse
- EVE_ENDPOINTS =
%w{ AllianceList CertificateTree ConquerableStationList ErrorList FacWarStats FacWarTopStats RefTypes SkillTree }
Instance Method Summary collapse
- #character_ids(*names) ⇒ Object (also: #character_id)
- #character_info(character_id) ⇒ Object
- #character_names(*ids) ⇒ Object (also: #character_name)
Instance Method Details
#character_ids(*names) ⇒ Object Also known as: character_id
13 14 15 |
# File 'lib/neweden/eve.rb', line 13 def character_ids(*names) request("/eve/CharacterID.xml.aspx", :post, :names => names.join(",")) end |
#character_info(character_id) ⇒ Object
18 19 20 |
# File 'lib/neweden/eve.rb', line 18 def character_info(character_id) request("/eve/CharacterInfo.xml.aspx", :post, :characterID => character_id) end |
#character_names(*ids) ⇒ Object Also known as: character_name
22 23 24 |
# File 'lib/neweden/eve.rb', line 22 def character_names(*ids) request("/eve/CharacterName.xml.aspx", :post, :ids => ids.join(",")) end |