eveapi 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +8 -8
  2. data/.document +0 -4
  3. data/.gitignore +2 -0
  4. data/.yardopts +1 -0
  5. data/CONTRIBUTING.md +31 -0
  6. data/README.md +90 -56
  7. data/Rakefile +5 -41
  8. data/gemspec.yml +1 -1
  9. data/lib/eveapi.rb +17 -31
  10. data/lib/eveapi/alliance.rb +21 -8
  11. data/lib/eveapi/character.rb +44 -14
  12. data/lib/eveapi/client.rb +141 -15
  13. data/lib/eveapi/crest.rb +24 -10
  14. data/lib/eveapi/request.rb +5 -0
  15. data/lib/eveapi/util.rb +60 -3
  16. data/lib/eveapi/version.rb +1 -1
  17. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_corporations_to_be_an_Array.yml +194 -206
  18. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_find_to_fill_short_name_and_name_values.yml +25 -31
  19. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_info_to_be_a_Hash.yml +195 -207
  20. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_new_with_id_argument_to_create_an_Alliance.yml +18 -18
  21. data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_to_h_to_be_a_Hash.yml +192 -204
  22. data/spec/cassettes/EVEApi/EVEApi_Character/expect_Character_new_args_to_create_a_Character.yml +28 -28
  23. data/spec/cassettes/EVEApi/EVEApi_Character/expect_a_Character_account_balance_to_return_a_Hash.yml +32 -32
  24. data/spec/cassettes/EVEApi/{EVEApi_Client/calling_api_method_account_characters.yml → EVEApi_Character/raises_ArgumentError_on_non-existing_instance_variable.yml} +54 -23
  25. data/spec/cassettes/EVEApi/{EVEApi_Client/calling_api_method_char_wallet_journal.yml → EVEApi_Character/sets_Client_instance_variable_if_method_argument_key_matches_name.yml} +85 -23
  26. data/spec/cassettes/EVEApi/EVEApi_Client/{calling_api_method_account_account_status.yml → calling_api_method_account_status.yml} +22 -22
  27. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_api_methods.yml +288 -0
  28. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_call_list.yml +288 -0
  29. data/spec/cassettes/EVEApi/EVEApi_Client/{calling_api_method_char_notifications.yml → calling_api_method_characters.yml} +58 -24
  30. data/spec/cassettes/EVEApi/EVEApi_Client/{calling_api_method_account_api_key_info.yml → calling_api_method_key_info.yml} +23 -23
  31. data/spec/cassettes/EVEApi/EVEApi_Client/{calling_api_method_server_server_status.yml → calling_api_method_server_status.yml} +23 -23
  32. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_characters_to_handle_mutiple_characters_differently.yml +18 -18
  33. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_charcaters_to_succeed.yml +18 -18
  34. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_connection_to_be_an_Excon_Connection.yml +18 -18
  35. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_new_to_succeed.yml +18 -18
  36. data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_params_to_return_an_empty_hash_when_on_no_param.yml +18 -18
  37. data/spec/cassettes/EVEApi/EVEApi_Client/{expect_check_path_to_return_a_non-empty_String_for_a_muti-part_name.yml → expect_Symbol_to_path_to_return_a_String_for_a_muti-part_name.yml} +18 -18
  38. data/spec/cassettes/EVEApi/EVEApi_Client/{expect_check_path_to_return_an_empty_String_for_a_one_part_name.yml → expect_Symbol_to_path_to_return_an_empty_String_for_a_one_part_name.yml} +18 -18
  39. data/spec/cassettes/EVEApi/EVEApi_Client/expect_api_methods_to_return_an_Array_of_method_symobls.yml +23 -23
  40. data/spec/cassettes/EVEApi/EVEApi_Client/expect_calling_a_non-existing_API_method_to_fail.yml +21 -21
  41. data/spec/cassettes/EVEApi/EVEApi_Client/expect_calling_an_existing_API_method_to_succeed.yml +23 -23
  42. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_alliances_to_be_an_Array.yml +192 -204
  43. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_new_to_succeed.yml +18 -18
  44. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_types_to_be_an_Array.yml +25972 -0
  45. data/spec/cassettes/EVEApi/EVEApi_Crest/expect_details_to_return_Hash_when_called_on_Hash_with_href_key.yml +26023 -0
  46. data/spec/cassettes/EVEApi/EVEApi_Request/expect_there_to_be_a_EVEApi_Request_class.yml +18 -18
  47. data/spec/eve_api_spec.rb +19 -5
  48. metadata +31 -41
  49. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_account_balance.yml +0 -160
  50. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_asset_list.yml +0 -207
  51. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_character_sheet.yml +0 -207
  52. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contact_list.yml +0 -175
  53. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contact_notifications.yml +0 -159
  54. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contracts.yml +0 -159
  55. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_industry_jobs.yml +0 -159
  56. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_mail_messages.yml +0 -159
  57. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_mailing_lists.yml +0 -159
  58. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_market_orders.yml +0 -159
  59. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_medals.yml +0 -160
  60. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_research.yml +0 -159
  61. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_skill_in_training.yml +0 -159
  62. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_skill_queue.yml +0 -159
  63. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_standings.yml +0 -173
  64. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_upcoming_calendar_events.yml +0 -169
  65. data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_wallet_transactions.yml +0 -159
@@ -19,20 +19,20 @@ http_interactions:
19
19
  Access-Control-Allow-Origin:
20
20
  - "*"
21
21
  Date:
22
- - Sat, 12 Sep 2015 08:51:58 GMT
22
+ - Sun, 13 Sep 2015 20:36:17 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
25
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
26
- \ <currentTime>2015-09-12 08:51:59</currentTime>\r\n <result>\r\n <rowset
26
+ \ <currentTime>2015-09-13 20:36:18</currentTime>\r\n <result>\r\n <rowset
27
27
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
28
28
  \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
29
29
  Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
30
30
  factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
31
31
  corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
32
32
  allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
33
- \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
33
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
34
34
  http_version:
35
- recorded_at: Sat, 12 Sep 2015 08:51:59 GMT
35
+ recorded_at: Sun, 13 Sep 2015 20:36:13 GMT
36
36
  - request:
37
37
  method: get
38
38
  uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
@@ -52,20 +52,20 @@ http_interactions:
52
52
  Access-Control-Allow-Origin:
53
53
  - "*"
54
54
  Date:
55
- - Sat, 12 Sep 2015 08:51:58 GMT
55
+ - Sun, 13 Sep 2015 20:36:17 GMT
56
56
  body:
57
57
  encoding: UTF-8
58
58
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
59
- \ <currentTime>2015-09-12 08:51:59</currentTime>\r\n <result>\r\n <rowset
59
+ \ <currentTime>2015-09-13 20:36:18</currentTime>\r\n <result>\r\n <rowset
60
60
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
61
61
  \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
62
62
  Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
63
63
  factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
64
64
  corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
65
65
  allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
66
- \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
66
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
67
67
  http_version:
68
- recorded_at: Sat, 12 Sep 2015 08:51:59 GMT
68
+ recorded_at: Sun, 13 Sep 2015 20:36:14 GMT
69
69
  - request:
70
70
  method: get
71
71
  uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -85,18 +85,18 @@ http_interactions:
85
85
  Access-Control-Allow-Origin:
86
86
  - "*"
87
87
  Date:
88
- - Sat, 12 Sep 2015 08:51:59 GMT
88
+ - Sun, 13 Sep 2015 20:36:19 GMT
89
89
  body:
90
90
  encoding: UTF-8
91
91
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
92
- \ <currentTime>2015-09-12 08:51:59</currentTime>\r\n <result>\r\n <rowset
92
+ \ <currentTime>2015-09-13 20:36:19</currentTime>\r\n <result>\r\n <rowset
93
93
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
94
94
  \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
95
95
  Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
96
- factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
97
- 09:48:16</cachedUntil>\r\n</eveapi>"
96
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
97
+ 21:23:58</cachedUntil>\r\n</eveapi>"
98
98
  http_version:
99
- recorded_at: Sat, 12 Sep 2015 08:51:59 GMT
99
+ recorded_at: Sun, 13 Sep 2015 20:36:14 GMT
100
100
  - request:
101
101
  method: get
102
102
  uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -116,21 +116,83 @@ http_interactions:
116
116
  Access-Control-Allow-Origin:
117
117
  - "*"
118
118
  Date:
119
- - Sat, 12 Sep 2015 08:51:59 GMT
119
+ - Sun, 13 Sep 2015 20:36:19 GMT
120
120
  body:
121
121
  encoding: UTF-8
122
122
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
123
- \ <currentTime>2015-09-12 08:52:00</currentTime>\r\n <result>\r\n <rowset
123
+ \ <currentTime>2015-09-13 20:36:20</currentTime>\r\n <result>\r\n <rowset
124
124
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
125
125
  \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
126
126
  Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
127
- factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
128
- 09:48:16</cachedUntil>\r\n</eveapi>"
127
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
128
+ 21:23:58</cachedUntil>\r\n</eveapi>"
129
129
  http_version:
130
- recorded_at: Sat, 12 Sep 2015 08:52:00 GMT
130
+ recorded_at: Sun, 13 Sep 2015 20:36:16 GMT
131
131
  - request:
132
132
  method: get
133
- uri: https://api.eveonline.com/char/WalletJournal.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
133
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
134
+ body:
135
+ encoding: US-ASCII
136
+ string: ''
137
+ headers:
138
+ User-Agent:
139
+ - excon/0.45.4
140
+ response:
141
+ status:
142
+ code: 200
143
+ message: ''
144
+ headers:
145
+ Content-Type:
146
+ - application/xml; charset=utf-8
147
+ Access-Control-Allow-Origin:
148
+ - "*"
149
+ Date:
150
+ - Sun, 13 Sep 2015 20:36:21 GMT
151
+ body:
152
+ encoding: UTF-8
153
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
154
+ \ <currentTime>2015-09-13 20:36:21</currentTime>\r\n <result>\r\n <rowset
155
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
156
+ \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
157
+ Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
158
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
159
+ 21:23:58</cachedUntil>\r\n</eveapi>"
160
+ http_version:
161
+ recorded_at: Sun, 13 Sep 2015 20:36:16 GMT
162
+ - request:
163
+ method: get
164
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
165
+ body:
166
+ encoding: US-ASCII
167
+ string: ''
168
+ headers:
169
+ User-Agent:
170
+ - excon/0.45.4
171
+ response:
172
+ status:
173
+ code: 200
174
+ message: ''
175
+ headers:
176
+ Content-Type:
177
+ - application/xml; charset=utf-8
178
+ Access-Control-Allow-Origin:
179
+ - "*"
180
+ Date:
181
+ - Sun, 13 Sep 2015 20:36:21 GMT
182
+ body:
183
+ encoding: UTF-8
184
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
185
+ \ <currentTime>2015-09-13 20:36:21</currentTime>\r\n <result>\r\n <rowset
186
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
187
+ \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
188
+ Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
189
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
190
+ 21:23:58</cachedUntil>\r\n</eveapi>"
191
+ http_version:
192
+ recorded_at: Sun, 13 Sep 2015 20:36:17 GMT
193
+ - request:
194
+ method: get
195
+ uri: https://api.eveonline.com/char/WalletJournal.xml.aspx?characterID=95512059&keyID=4278167&rowCount=1&vCode=supersecretstuff
134
196
  body:
135
197
  encoding: US-ASCII
136
198
  string: ''
@@ -147,13 +209,13 @@ http_interactions:
147
209
  Access-Control-Allow-Origin:
148
210
  - "*"
149
211
  Date:
150
- - Sat, 12 Sep 2015 08:51:59 GMT
212
+ - Sun, 13 Sep 2015 20:36:21 GMT
151
213
  body:
152
214
  encoding: UTF-8
153
215
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
154
- \ <currentTime>2015-09-12 08:52:00</currentTime>\r\n <result>\r\n <rowset
216
+ \ <currentTime>2015-09-13 20:36:22</currentTime>\r\n <result>\r\n <rowset
155
217
  name=\"transactions\" key=\"refID\" columns=\"date,refID,refTypeID,ownerName1,ownerID1,ownerName2,ownerID2,argName1,argID1,amount,balance,reason,taxReceiverID,taxAmount,owner1TypeID,owner2TypeID\"
156
- />\r\n </result>\r\n <cachedUntil>2015-09-12 09:19:00</cachedUntil>\r\n</eveapi>"
218
+ />\r\n </result>\r\n <cachedUntil>2015-09-13 20:56:31</cachedUntil>\r\n</eveapi>"
157
219
  http_version:
158
- recorded_at: Sat, 12 Sep 2015 08:52:00 GMT
220
+ recorded_at: Sun, 13 Sep 2015 20:36:17 GMT
159
221
  recorded_with: VCR 2.9.3
@@ -19,20 +19,20 @@ http_interactions:
19
19
  Access-Control-Allow-Origin:
20
20
  - "*"
21
21
  Date:
22
- - Sat, 12 Sep 2015 08:51:52 GMT
22
+ - Sun, 13 Sep 2015 20:34:43 GMT
23
23
  body:
24
24
  encoding: UTF-8
25
25
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
26
- \ <currentTime>2015-09-12 08:51:53</currentTime>\r\n <result>\r\n <rowset
26
+ \ <currentTime>2015-09-13 20:34:43</currentTime>\r\n <result>\r\n <rowset
27
27
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
28
28
  \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
29
29
  Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
30
30
  factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
31
31
  corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
32
32
  allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
33
- \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
33
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
34
34
  http_version:
35
- recorded_at: Sat, 12 Sep 2015 08:51:53 GMT
35
+ recorded_at: Sun, 13 Sep 2015 20:34:39 GMT
36
36
  - request:
37
37
  method: get
38
38
  uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
@@ -52,20 +52,20 @@ http_interactions:
52
52
  Access-Control-Allow-Origin:
53
53
  - "*"
54
54
  Date:
55
- - Sat, 12 Sep 2015 08:51:52 GMT
55
+ - Sun, 13 Sep 2015 20:34:44 GMT
56
56
  body:
57
57
  encoding: UTF-8
58
58
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
59
- \ <currentTime>2015-09-12 08:51:53</currentTime>\r\n <result>\r\n <rowset
59
+ \ <currentTime>2015-09-13 20:34:44</currentTime>\r\n <result>\r\n <rowset
60
60
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
61
61
  \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
62
62
  Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
63
63
  factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
64
64
  corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
65
65
  allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
66
- \ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
66
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
67
67
  http_version:
68
- recorded_at: Sat, 12 Sep 2015 08:51:53 GMT
68
+ recorded_at: Sun, 13 Sep 2015 20:34:39 GMT
69
69
  - request:
70
70
  method: get
71
71
  uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -85,18 +85,18 @@ http_interactions:
85
85
  Access-Control-Allow-Origin:
86
86
  - "*"
87
87
  Date:
88
- - Sat, 12 Sep 2015 08:51:53 GMT
88
+ - Sun, 13 Sep 2015 20:34:43 GMT
89
89
  body:
90
90
  encoding: UTF-8
91
91
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
92
- \ <currentTime>2015-09-12 08:51:53</currentTime>\r\n <result>\r\n <rowset
92
+ \ <currentTime>2015-09-13 20:34:44</currentTime>\r\n <result>\r\n <rowset
93
93
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
94
94
  \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
95
95
  Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
96
- factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
97
- 09:48:16</cachedUntil>\r\n</eveapi>"
96
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
97
+ 21:23:58</cachedUntil>\r\n</eveapi>"
98
98
  http_version:
99
- recorded_at: Sat, 12 Sep 2015 08:51:54 GMT
99
+ recorded_at: Sun, 13 Sep 2015 20:34:39 GMT
100
100
  - request:
101
101
  method: get
102
102
  uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -116,18 +116,18 @@ http_interactions:
116
116
  Access-Control-Allow-Origin:
117
117
  - "*"
118
118
  Date:
119
- - Sat, 12 Sep 2015 08:51:54 GMT
119
+ - Sun, 13 Sep 2015 20:34:43 GMT
120
120
  body:
121
121
  encoding: UTF-8
122
122
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
123
- \ <currentTime>2015-09-12 08:51:54</currentTime>\r\n <result>\r\n <rowset
123
+ \ <currentTime>2015-09-13 20:34:44</currentTime>\r\n <result>\r\n <rowset
124
124
  name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
125
125
  \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
126
126
  Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
127
- factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
128
- 09:48:16</cachedUntil>\r\n</eveapi>"
127
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
128
+ 21:23:58</cachedUntil>\r\n</eveapi>"
129
129
  http_version:
130
- recorded_at: Sat, 12 Sep 2015 08:51:54 GMT
130
+ recorded_at: Sun, 13 Sep 2015 20:34:39 GMT
131
131
  - request:
132
132
  method: get
133
133
  uri: https://api.eveonline.com/account/AccountStatus.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
@@ -147,15 +147,15 @@ http_interactions:
147
147
  Access-Control-Allow-Origin:
148
148
  - "*"
149
149
  Date:
150
- - Sat, 12 Sep 2015 08:51:54 GMT
150
+ - Sun, 13 Sep 2015 20:34:44 GMT
151
151
  body:
152
152
  encoding: UTF-8
153
153
  string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
154
- \ <currentTime>2015-09-12 08:51:54</currentTime>\r\n <result>\r\n <paidUntil>2015-05-09
154
+ \ <currentTime>2015-09-13 20:34:44</currentTime>\r\n <result>\r\n <paidUntil>2015-05-09
155
155
  20:30:35</paidUntil>\r\n <createDate>2015-04-09 20:28:28</createDate>\r\n
156
156
  \ <logonCount>14</logonCount>\r\n <logonMinutes>166</logonMinutes>\r\n
157
157
  \ <rowset name=\"multiCharacterTraining\" key=\"trainingEnd\" columns=\"trainingEnd\"
158
- />\r\n </result>\r\n <cachedUntil>2015-09-12 09:48:54</cachedUntil>\r\n</eveapi>"
158
+ />\r\n </result>\r\n <cachedUntil>2015-09-13 21:24:28</cachedUntil>\r\n</eveapi>"
159
159
  http_version:
160
- recorded_at: Sat, 12 Sep 2015 08:51:54 GMT
160
+ recorded_at: Sun, 13 Sep 2015 20:34:39 GMT
161
161
  recorded_with: VCR 2.9.3
@@ -0,0 +1,288 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - excon/0.45.4
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: ''
16
+ headers:
17
+ Content-Type:
18
+ - application/xml; charset=utf-8
19
+ Access-Control-Allow-Origin:
20
+ - "*"
21
+ Date:
22
+ - Sun, 13 Sep 2015 20:34:47 GMT
23
+ body:
24
+ encoding: UTF-8
25
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
26
+ \ <currentTime>2015-09-13 20:34:47</currentTime>\r\n <result>\r\n <rowset
27
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
28
+ \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
29
+ Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
30
+ factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
31
+ corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
32
+ allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
33
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
34
+ http_version:
35
+ recorded_at: Sun, 13 Sep 2015 20:34:42 GMT
36
+ - request:
37
+ method: get
38
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
39
+ body:
40
+ encoding: US-ASCII
41
+ string: ''
42
+ headers:
43
+ User-Agent:
44
+ - excon/0.45.4
45
+ response:
46
+ status:
47
+ code: 200
48
+ message: ''
49
+ headers:
50
+ Content-Type:
51
+ - application/xml; charset=utf-8
52
+ Access-Control-Allow-Origin:
53
+ - "*"
54
+ Date:
55
+ - Sun, 13 Sep 2015 20:34:47 GMT
56
+ body:
57
+ encoding: UTF-8
58
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
59
+ \ <currentTime>2015-09-13 20:34:47</currentTime>\r\n <result>\r\n <rowset
60
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
61
+ \ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
62
+ Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
63
+ factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
64
+ corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
65
+ allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
66
+ \ </result>\r\n <cachedUntil>2015-09-13 21:19:27</cachedUntil>\r\n</eveapi>"
67
+ http_version:
68
+ recorded_at: Sun, 13 Sep 2015 20:34:42 GMT
69
+ - request:
70
+ method: get
71
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
72
+ body:
73
+ encoding: US-ASCII
74
+ string: ''
75
+ headers:
76
+ User-Agent:
77
+ - excon/0.45.4
78
+ response:
79
+ status:
80
+ code: 200
81
+ message: ''
82
+ headers:
83
+ Content-Type:
84
+ - application/xml; charset=utf-8
85
+ Access-Control-Allow-Origin:
86
+ - "*"
87
+ Date:
88
+ - Sun, 13 Sep 2015 20:34:46 GMT
89
+ body:
90
+ encoding: UTF-8
91
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
92
+ \ <currentTime>2015-09-13 20:34:47</currentTime>\r\n <result>\r\n <rowset
93
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
94
+ \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
95
+ Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
96
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
97
+ 21:23:58</cachedUntil>\r\n</eveapi>"
98
+ http_version:
99
+ recorded_at: Sun, 13 Sep 2015 20:34:43 GMT
100
+ - request:
101
+ method: get
102
+ uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
103
+ body:
104
+ encoding: US-ASCII
105
+ string: ''
106
+ headers:
107
+ User-Agent:
108
+ - excon/0.45.4
109
+ response:
110
+ status:
111
+ code: 200
112
+ message: ''
113
+ headers:
114
+ Content-Type:
115
+ - application/xml; charset=utf-8
116
+ Access-Control-Allow-Origin:
117
+ - "*"
118
+ Date:
119
+ - Sun, 13 Sep 2015 20:34:47 GMT
120
+ body:
121
+ encoding: UTF-8
122
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
123
+ \ <currentTime>2015-09-13 20:34:48</currentTime>\r\n <result>\r\n <rowset
124
+ name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
125
+ \ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
126
+ Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
127
+ factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-13
128
+ 21:23:58</cachedUntil>\r\n</eveapi>"
129
+ http_version:
130
+ recorded_at: Sun, 13 Sep 2015 20:34:43 GMT
131
+ - request:
132
+ method: get
133
+ uri: https://api.eveonline.com/api/CallList.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
134
+ body:
135
+ encoding: US-ASCII
136
+ string: ''
137
+ headers:
138
+ User-Agent:
139
+ - excon/0.45.4
140
+ response:
141
+ status:
142
+ code: 200
143
+ message: ''
144
+ headers:
145
+ Content-Type:
146
+ - application/xml; charset=utf-8
147
+ Access-Control-Allow-Origin:
148
+ - "*"
149
+ Date:
150
+ - Sun, 13 Sep 2015 20:34:47 GMT
151
+ body:
152
+ encoding: UTF-8
153
+ string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
154
+ \ <currentTime>2015-09-13 20:34:48</currentTime>\r\n <result>\r\n <rowset
155
+ name=\"callGroups\" key=\"groupID\" columns=\"groupID,name,description\">\r\n
156
+ \ <row groupID=\"1\" name=\"Account and Market\" description=\"Market
157
+ Orders, account balance and journal history.\" />\r\n <row groupID=\"7\"
158
+ name=\"Communications\" description=\"Private communications such as contact
159
+ lists, Eve Mail and Notifications.\" />\r\n <row groupID=\"5\" name=\"Corporation
160
+ Members\" description=\"Member information for Corporations.\" />\r\n <row
161
+ groupID=\"6\" name=\"Outposts and Starbases\" description=\"Outpost and Starbase
162
+ information for Corporations\" />\r\n <row groupID=\"3\" name=\"Private
163
+ Information\" description=\"Personal information about the owner. Asset lists,
164
+ skill training for characters, Private Calendar and more.\" />\r\n <row
165
+ groupID=\"4\" name=\"Public Information\" description=\"Achievements such
166
+ as Medals, Kill Mails, Fational Warfare Statistics and NPC Standings.\" />\r\n
167
+ \ <row groupID=\"2\" name=\"Science and Industry\" description=\"Datacore
168
+ production and job listing.\" />\r\n </rowset>\r\n <rowset name=\"calls\"
169
+ key=\"accessMask,type\" columns=\"accessMask,type,name,groupID,description\">\r\n
170
+ \ <row accessMask=\"536870912\" type=\"Character\" name=\"ChatChannels\"
171
+ groupID=\"7\" description=\"List of all chat channels the character owns or
172
+ is an operator of.\" />\r\n <row accessMask=\"268435456\" type=\"Character\"
173
+ name=\"Bookmarks\" groupID=\"3\" description=\"List of all personal bookmarks.\"
174
+ />\r\n <row accessMask=\"134217728\" type=\"Character\" name=\"Locations\"
175
+ groupID=\"3\" description=\"Allows the fetching of coordinate and name data
176
+ for items owned by the character.\" />\r\n <row accessMask=\"67108864\"
177
+ type=\"Character\" name=\"Contracts\" groupID=\"3\" description=\"List of
178
+ all Contracts the character is involved in.\" />\r\n <row accessMask=\"33554432\"
179
+ type=\"Character\" name=\"AccountStatus\" groupID=\"3\" description=\"EVE
180
+ player account status.\" />\r\n <row accessMask=\"16777216\" type=\"Character\"
181
+ name=\"CharacterInfo\" groupID=\"3\" description=\"Sensitive Character Information,
182
+ exposes account balance and last known location on top of the other Character
183
+ Information call.\" />\r\n <row accessMask=\"8388608\" type=\"Character\"
184
+ name=\"CharacterInfo\" groupID=\"4\" description=\"Character information,
185
+ exposes skill points and current ship information on top of'Show Info'information.\"
186
+ />\r\n <row accessMask=\"4194304\" type=\"Character\" name=\"WalletTransactions\"
187
+ groupID=\"1\" description=\"Market transaction journal of character.\" />\r\n
188
+ \ <row accessMask=\"2097152\" type=\"Character\" name=\"WalletJournal\"
189
+ groupID=\"1\" description=\"Wallet journal of character.\" />\r\n <row
190
+ accessMask=\"1048576\" type=\"Character\" name=\"UpcomingCalendarEvents\"
191
+ groupID=\"3\" description=\"Upcoming events on characters calendar.\" />\r\n
192
+ \ <row accessMask=\"524288\" type=\"Character\" name=\"Standings\" groupID=\"4\"
193
+ description=\"NPC Standings towards the character.\" />\r\n <row accessMask=\"262144\"
194
+ type=\"Character\" name=\"SkillQueue\" groupID=\"3\" description=\"Entire
195
+ skill queue of character.\" />\r\n <row accessMask=\"131072\" type=\"Character\"
196
+ name=\"SkillInTraining\" groupID=\"3\" description=\"Skill currently in training
197
+ on the character. Subset of entire Skill Queue.\" />\r\n <row accessMask=\"65536\"
198
+ type=\"Character\" name=\"Research\" groupID=\"2\" description=\"List of all
199
+ Research agents working for the character and the progress of the research.\"
200
+ />\r\n <row accessMask=\"32768\" type=\"Character\" name=\"NotificationTexts\"
201
+ groupID=\"7\" description=\"Actual body of notifications sent to the character.
202
+ Requires Notification access to function.\" />\r\n <row accessMask=\"16384\"
203
+ type=\"Character\" name=\"Notifications\" groupID=\"7\" description=\"List
204
+ of recent notifications sent to the character.\" />\r\n <row accessMask=\"8192\"
205
+ type=\"Character\" name=\"Medals\" groupID=\"4\" description=\"Medals awarded
206
+ to the character.\" />\r\n <row accessMask=\"4096\" type=\"Character\"
207
+ name=\"MarketOrders\" groupID=\"1\" description=\"List of all Market Orders
208
+ the character has made.\" />\r\n <row accessMask=\"2048\" type=\"Character\"
209
+ name=\"MailMessages\" groupID=\"7\" description=\"List of all messages in
210
+ the characters EVE Mail Inbox.\" />\r\n <row accessMask=\"1024\" type=\"Character\"
211
+ name=\"MailingLists\" groupID=\"7\" description=\"List of all Mailing Lists
212
+ the character subscribes to.\" />\r\n <row accessMask=\"512\" type=\"Character\"
213
+ name=\"MailBodies\" groupID=\"7\" description=\"EVE Mail bodies. Requires
214
+ MailMessages as well to function.\" />\r\n <row accessMask=\"256\" type=\"Character\"
215
+ name=\"KillLog\" groupID=\"4\" description=\"Characters kill log.\" />\r\n
216
+ \ <row accessMask=\"128\" type=\"Character\" name=\"IndustryJobs\" groupID=\"2\"
217
+ description=\"Character jobs, completed and active.\" />\r\n <row accessMask=\"64\"
218
+ type=\"Character\" name=\"FacWarStats\" groupID=\"4\" description=\"Characters
219
+ Factional Warfare Statistics.\" />\r\n <row accessMask=\"32\" type=\"Character\"
220
+ name=\"ContactNotifications\" groupID=\"7\" description=\"Most recent contact
221
+ notifications for the character.\" />\r\n <row accessMask=\"16\" type=\"Character\"
222
+ name=\"ContactList\" groupID=\"7\" description=\"List of character contacts
223
+ and relationship levels.\" />\r\n <row accessMask=\"8\" type=\"Character\"
224
+ name=\"CharacterSheet\" groupID=\"3\" description=\"Character Sheet information.
225
+ Contains basic'Show Info'information along with clones, account balance, implants,
226
+ attributes, skills, certificates and corporation roles.\" />\r\n <row
227
+ accessMask=\"4\" type=\"Character\" name=\"CalendarEventAttendees\" groupID=\"3\"
228
+ description=\"Event attendee responses. Requires UpcomingCalendarEvents to
229
+ function.\" />\r\n <row accessMask=\"2\" type=\"Character\" name=\"AssetList\"
230
+ groupID=\"3\" description=\"Entire asset list of character.\" />\r\n <row
231
+ accessMask=\"1\" type=\"Character\" name=\"AccountBalance\" groupID=\"1\"
232
+ description=\"Current balance of characters wallet.\" />\r\n <row accessMask=\"67108864\"
233
+ type=\"Corporation\" name=\"Bookmarks\" groupID=\"3\" description=\"List of
234
+ all corporate bookmarks.\" />\r\n <row accessMask=\"33554432\" type=\"Corporation\"
235
+ name=\"MemberTrackingExtended\" groupID=\"5\" description=\"Extensive Member
236
+ information. Time of last logoff, last known location and ship.\" />\r\n <row
237
+ accessMask=\"16777216\" type=\"Corporation\" name=\"Locations\" groupID=\"3\"
238
+ description=\"Allows the fetching of coordinate and name data for items owned
239
+ by the corporation.\" />\r\n <row accessMask=\"8388608\" type=\"Corporation\"
240
+ name=\"Contracts\" groupID=\"3\" description=\"List of recent Contracts the
241
+ corporation is involved in.\" />\r\n <row accessMask=\"4194304\" type=\"Corporation\"
242
+ name=\"Titles\" groupID=\"5\" description=\"Titles of corporation and the
243
+ roles they grant.\" />\r\n <row accessMask=\"2097152\" type=\"Corporation\"
244
+ name=\"WalletTransactions\" groupID=\"1\" description=\"Market transactions
245
+ of all corporate accounts.\" />\r\n <row accessMask=\"1048576\" type=\"Corporation\"
246
+ name=\"WalletJournal\" groupID=\"1\" description=\"Wallet journal for all
247
+ corporate accounts.\" />\r\n <row accessMask=\"524288\" type=\"Corporation\"
248
+ name=\"StarbaseList\" groupID=\"6\" description=\"List of all corporate starbases.\"
249
+ />\r\n <row accessMask=\"262144\" type=\"Corporation\" name=\"Standings\"
250
+ groupID=\"4\" description=\"NPC Standings towards corporation.\" />\r\n <row
251
+ accessMask=\"131072\" type=\"Corporation\" name=\"StarbaseDetail\" groupID=\"6\"
252
+ description=\"List of all settings of corporate starbases.\" />\r\n <row
253
+ accessMask=\"65536\" type=\"Corporation\" name=\"Shareholders\" groupID=\"1\"
254
+ description=\"Shareholders of the corporation.\" />\r\n <row accessMask=\"32768\"
255
+ type=\"Corporation\" name=\"OutpostServiceDetail\" groupID=\"6\" description=\"List
256
+ of all service settings of corporate outposts.\" />\r\n <row accessMask=\"16384\"
257
+ type=\"Corporation\" name=\"OutpostList\" groupID=\"6\" description=\"List
258
+ of all outposts controlled by the corporation.\" />\r\n <row accessMask=\"8192\"
259
+ type=\"Corporation\" name=\"Medals\" groupID=\"4\" description=\"List of all
260
+ medals created by the corporation.\" />\r\n <row accessMask=\"4096\"
261
+ type=\"Corporation\" name=\"MarketOrders\" groupID=\"1\" description=\"List
262
+ of all corporate market orders.\" />\r\n <row accessMask=\"2048\" type=\"Corporation\"
263
+ name=\"MemberTrackingLimited\" groupID=\"5\" description=\"Limited Member
264
+ information.\" />\r\n <row accessMask=\"1024\" type=\"Corporation\" name=\"MemberSecurityLog\"
265
+ groupID=\"5\" description=\"Member role and title change log.\" />\r\n <row
266
+ accessMask=\"512\" type=\"Corporation\" name=\"MemberSecurity\" groupID=\"5\"
267
+ description=\"Member roles and titles.\" />\r\n <row accessMask=\"256\"
268
+ type=\"Corporation\" name=\"KillLog\" groupID=\"4\" description=\"Corporation
269
+ kill log.\" />\r\n <row accessMask=\"128\" type=\"Corporation\" name=\"IndustryJobs\"
270
+ groupID=\"2\" description=\"Corporation jobs, completed and active.\" />\r\n
271
+ \ <row accessMask=\"64\" type=\"Corporation\" name=\"FacWarStats\" groupID=\"4\"
272
+ description=\"Corporations Factional Warfare Statistics.\" />\r\n <row
273
+ accessMask=\"32\" type=\"Corporation\" name=\"ContainerLog\" groupID=\"3\"
274
+ description=\"Corporate secure container acess log.\" />\r\n <row accessMask=\"16\"
275
+ type=\"Corporation\" name=\"ContactList\" groupID=\"7\" description=\"Corporate
276
+ contact list and relationships.\" />\r\n <row accessMask=\"8\" type=\"Corporation\"
277
+ name=\"CorporationSheet\" groupID=\"3\" description=\"Exposes basic'Show Info'information
278
+ as well as Member Limit and basic division and wallet info.\" />\r\n <row
279
+ accessMask=\"4\" type=\"Corporation\" name=\"MemberMedals\" groupID=\"5\"
280
+ description=\"List of medals awarded to corporation members.\" />\r\n <row
281
+ accessMask=\"2\" type=\"Corporation\" name=\"AssetList\" groupID=\"3\" description=\"List
282
+ of all corporation assets.\" />\r\n <row accessMask=\"1\" type=\"Corporation\"
283
+ name=\"AccountBalance\" groupID=\"1\" description=\"Current balance of all
284
+ corporation accounts.\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-14
285
+ 02:31:48</cachedUntil>\r\n</eveapi>"
286
+ http_version:
287
+ recorded_at: Sun, 13 Sep 2015 20:34:43 GMT
288
+ recorded_with: VCR 2.9.3