Class: EveApp::XmlApi::Client
- Inherits:
-
Object
- Object
- EveApp::XmlApi::Client
- Defined in:
- lib/eve_app/xml_api/client.rb
Constant Summary collapse
- API_HOST =
'https://api.eveonline.com'
- MAX_TRIES =
4
- REQUEST_TIMEOUT =
60
Instance Attribute Summary collapse
-
#character_id ⇒ Object
Returns the value of attribute character_id.
-
#key_id ⇒ Object
readonly
Returns the value of attribute key_id.
-
#save_responses ⇒ Object
Returns the value of attribute save_responses.
-
#vcode ⇒ Object
readonly
Returns the value of attribute vcode.
Instance Method Summary collapse
-
#initialize(key_id, vcode) ⇒ Client
constructor
A new instance of Client.
- #method_missing(name, params = {}) ⇒ Object
Constructor Details
permalink #initialize(key_id, vcode) ⇒ Client
Returns a new instance of Client.
15 16 17 18 19 20 |
# File 'lib/eve_app/xml_api/client.rb', line 15 def initialize(key_id, vcode) @key_id = key_id @vcode = vcode @save_responses = false @character_id = nil end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
permalink #method_missing(name, params = {}) ⇒ Object
[View source]
22 23 24 25 26 27 |
# File 'lib/eve_app/xml_api/client.rb', line 22 def method_missing(name, params={}) call = Calls.const_get(name.to_s.camelize) params[:last_id] ? walk(call, params) : request(call, params) # rescue NameError # super end |
Instance Attribute Details
permalink #character_id ⇒ Object
Returns the value of attribute character_id.
13 14 15 |
# File 'lib/eve_app/xml_api/client.rb', line 13 def character_id @character_id end |
permalink #key_id ⇒ Object (readonly)
Returns the value of attribute key_id.
12 13 14 |
# File 'lib/eve_app/xml_api/client.rb', line 12 def key_id @key_id end |
permalink #save_responses ⇒ Object
Returns the value of attribute save_responses.
13 14 15 |
# File 'lib/eve_app/xml_api/client.rb', line 13 def save_responses @save_responses end |
permalink #vcode ⇒ Object (readonly)
Returns the value of attribute vcode.
12 13 14 |
# File 'lib/eve_app/xml_api/client.rb', line 12 def vcode @vcode end |