eve_online 0.43.0 → 0.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.fasterer.yml +3 -0
- data/.github/dependabot.yml +16 -8
- data/.github/workflows/codeql.yml +78 -0
- data/.github/workflows/dependency-review.yml +23 -0
- data/.github/workflows/fasterer.yml +33 -0
- data/.github/workflows/mdl.yml +8 -3
- data/.github/workflows/rspec.yml +20 -11
- data/.github/workflows/scorecards.yml +76 -0
- data/.gitignore +1 -1
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/.standard.yml +1 -1
- data/CHANGELOG.md +22 -0
- data/Gemfile.lock +112 -103
- data/LICENSE.txt +1 -1
- data/README.md +6 -190
- data/eve_online.gemspec +4 -6
- data/gemfiles/activesupport_7.1.gemfile +12 -0
- data/gemfiles/activesupport_7.2.gemfile +12 -0
- data/gemfiles/activesupport_main.gemfile +12 -0
- data/lib/eve_online/esi/base.rb +4 -31
- data/lib/eve_online/esi/character_assets_locations.rb +0 -4
- data/lib/eve_online/esi/character_assets_names.rb +0 -4
- data/lib/eve_online/esi/corporation_assets_locations.rb +0 -4
- data/lib/eve_online/esi/corporation_assets_names.rb +0 -4
- data/lib/eve_online/version.rb +1 -1
- data/lib/eve_online.rb +0 -1
- metadata +16 -39
- data/Appraisals +0 -25
- data/lib/eve_online/exceptions/not_modified.rb +0 -8
data/README.md
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
|
3
3
|
[](https://badge.fury.io/rb/eve_online)
|
4
4
|
[](https://rubygems.org/gems/eve_online)
|
5
|
-
[](https://snyk.io/test/github/evemonk/eve_online)
|
6
|
-
[](https://hakiri.io/github/evemonk/eve_online/main)
|
7
5
|
[](https://deepsource.io/gh/evemonk/eve_online/?ref=repository-badge)
|
8
6
|
[](https://github.com/testdouble/standard)
|
9
7
|
|
@@ -49,17 +47,14 @@ gem install eve_online
|
|
49
47
|
|
50
48
|
## Supported ruby versions
|
51
49
|
|
52
|
-
* MRI 2
|
53
|
-
* MRI 3.
|
54
|
-
* MRI 3.1
|
50
|
+
* MRI 3.2
|
51
|
+
* MRI 3.3
|
55
52
|
|
56
53
|
## Supported rails versions
|
57
54
|
|
58
|
-
*
|
59
|
-
*
|
60
|
-
*
|
61
|
-
* 7.0
|
62
|
-
* Edge
|
55
|
+
* 7.1
|
56
|
+
* 7.2
|
57
|
+
* main
|
63
58
|
|
64
59
|
## Usage examples
|
65
60
|
|
@@ -75,8 +70,6 @@ alliances.scope # => nil
|
|
75
70
|
alliances.alliance_ids.size # => 3028
|
76
71
|
|
77
72
|
alliances.alliance_ids.first # => 1354830081
|
78
|
-
|
79
|
-
alliances.etag # => "97f0c48679f2b200043cdbc3406291fc945bcd652ddc7fc11ccdc37a"
|
80
73
|
```
|
81
74
|
|
82
75
|
#### Get alliance information
|
@@ -103,8 +96,6 @@ alliance.executor_corporation_id # => 98306624
|
|
103
96
|
alliance.faction_id # => nil
|
104
97
|
alliance.name # => "Kids With Guns Alliance"
|
105
98
|
alliance.ticker # => "-KWG-"
|
106
|
-
|
107
|
-
alliance.etag # => "6780e53a01c7d9715b5f445126c4f2c137da4be79e4debe541ce3ab2"
|
108
99
|
```
|
109
100
|
|
110
101
|
#### List alliance's corporations
|
@@ -119,8 +110,6 @@ alliance_corporations.scope # => nil
|
|
119
110
|
alliance_corporations.corporation_ids.size # => 70
|
120
111
|
|
121
112
|
alliance_corporations.corporation_ids.first # => 98091533
|
122
|
-
|
123
|
-
alliance_corporations.etag # => "9b6810d8ddbd9a13bb4ad09cf4bfefd9f29974bffd543eb30ce25132"
|
124
113
|
```
|
125
114
|
|
126
115
|
#### Get alliance icon
|
@@ -137,8 +126,6 @@ alliance_icon.as_json # => {:icon_medium=>"https://images.evetech.net/alliances/
|
|
137
126
|
|
138
127
|
alliance_icon.icon_medium # => "https://images.evetech.net/alliances/99005443/logo?tenant=tranquility&size=128"
|
139
128
|
alliance_icon.icon_small # => "https://images.evetech.net/alliances/99005443/logo?tenant=tranquility&size=64"
|
140
|
-
|
141
|
-
alliance_icon.etag # => "d067edb53a9019e0e05d99a2b1e7c7745433a982dda16667a14bff49"
|
142
129
|
```
|
143
130
|
|
144
131
|
### Assets
|
@@ -177,8 +164,6 @@ asset.location_id # => 1027847409779
|
|
177
164
|
asset.location_type # => "other"
|
178
165
|
asset.quantity # => 1
|
179
166
|
asset.type_id # => 1010
|
180
|
-
|
181
|
-
character_assets.etag # => "29da11b30974e55cd440a879199a629a8492a4c0a49894a2cd22f90b"
|
182
167
|
```
|
183
168
|
|
184
169
|
#### Get character asset locations
|
@@ -205,8 +190,6 @@ asset_location.position.as_json # => {:x=>-928621543221.3319,
|
|
205
190
|
asset_location.position.x # => -928621543221.3319
|
206
191
|
asset_location.position.y # => 297645715142.40234
|
207
192
|
asset_location.position.z # => -971212198300.4812
|
208
|
-
|
209
|
-
character_assets_locations.etag # => NotImplementedError
|
210
193
|
```
|
211
194
|
|
212
195
|
#### Get character asset names
|
@@ -227,8 +210,6 @@ asset_name.as_json # => {:item_id=>1001215602246,
|
|
227
210
|
|
228
211
|
asset_name.item_id # => 1001215602246
|
229
212
|
asset_name.name # => "HOLE"
|
230
|
-
|
231
|
-
character_assets_names.etag # => NotImplementedError
|
232
213
|
```
|
233
214
|
|
234
215
|
#### Get corporation assets
|
@@ -267,8 +248,6 @@ asset.location_id # => 1027847409779
|
|
267
248
|
asset.location_type # => "other"
|
268
249
|
asset.quantity # => 1
|
269
250
|
asset.type_id # => 1010
|
270
|
-
|
271
|
-
# TODO: corporation_assets.etag
|
272
251
|
```
|
273
252
|
|
274
253
|
#### Get corporation asset locations
|
@@ -297,8 +276,6 @@ asset_location.position.as_json # => {:x=>-928621543221.3319,
|
|
297
276
|
asset_location.position.x # => -928621543221.3319
|
298
277
|
asset_location.position.y # => 297645715142.40234
|
299
278
|
asset_location.position.z # => -971212198300.4812
|
300
|
-
|
301
|
-
corporation_assets_locations.etag # => NotImplementedError
|
302
279
|
```
|
303
280
|
|
304
281
|
#### Get corporation asset names
|
@@ -321,8 +298,6 @@ asset_name.as_json # => {:item_id=>1001215602246,
|
|
321
298
|
|
322
299
|
asset_name.item_id # => 1001215602246
|
323
300
|
asset_name.name # => "HOLE"
|
324
|
-
|
325
|
-
corporation_assets_names.etag # => NotImplementedError
|
326
301
|
```
|
327
302
|
|
328
303
|
### Bookmarks
|
@@ -362,8 +337,6 @@ event.event_id # => 1635240
|
|
362
337
|
event.event_response # => "not_responded"
|
363
338
|
event.importance # => 0
|
364
339
|
event.title # => "Moon extraction for 66-PMM - GoldMine-5-"
|
365
|
-
|
366
|
-
# TODO: character_calendar.etag
|
367
340
|
```
|
368
341
|
|
369
342
|
#### Get an event
|
@@ -436,8 +409,6 @@ character.name # => "Green Black"
|
|
436
409
|
character.race_id # => 2
|
437
410
|
character.security_status # => 1.8694881661345457
|
438
411
|
character.title # => nil
|
439
|
-
|
440
|
-
character.etag # => "22c39689783a86032b8d43fa0b2e8f4809c4f38a585e39471035aa8b"
|
441
412
|
```
|
442
413
|
|
443
414
|
#### Get agents research
|
@@ -476,8 +447,6 @@ blueprint.quantity # => -2
|
|
476
447
|
blueprint.runs # => 300
|
477
448
|
blueprint.time_efficiency # => 0
|
478
449
|
blueprint.type_id # => 1010
|
479
|
-
|
480
|
-
# TODO: character_blueprints.etag
|
481
450
|
```
|
482
451
|
|
483
452
|
#### Get corporation history
|
@@ -502,8 +471,6 @@ entry.corporation_id # => 1000168
|
|
502
471
|
entry.is_deleted # => nil
|
503
472
|
entry.record_id # => 16785803
|
504
473
|
entry.start_date # => Tue, 10 May 2011 10:23:00 UTC +00:00
|
505
|
-
|
506
|
-
character_corporation_history.etag # => "f9497588fc2db18ca9a2ee06c48a16120e0c712fe9925bb29d7aaeeb"
|
507
474
|
```
|
508
475
|
|
509
476
|
#### Calculate a CSPA charge cost
|
@@ -526,8 +493,6 @@ character_fatigue.last_jump_date # => nil
|
|
526
493
|
character_fatigue.last_update_date # => nil
|
527
494
|
|
528
495
|
# TODO: add real data here
|
529
|
-
|
530
|
-
# TODO: character_fatigue.etag
|
531
496
|
```
|
532
497
|
|
533
498
|
#### Get medals
|
@@ -560,8 +525,6 @@ notification.sender_type # => "corporation"
|
|
560
525
|
notification.text # => "againstID: 99005443\ncost: 0\ndeclaredByID: 98442842\ndelayHours: 24\nhostileState: 0\n"
|
561
526
|
notification.timestamp # => Thu, 01 Mar 2018 13:48:00 UTC +00:00
|
562
527
|
notification.type # => "AllWarDeclaredMsg"
|
563
|
-
|
564
|
-
# TODO: character_notifications.etag
|
565
528
|
```
|
566
529
|
|
567
530
|
#### Get new contact notifications
|
@@ -584,8 +547,6 @@ character_portrait.medium # => "https://images.evetech.net/Character/1337512245_
|
|
584
547
|
character_portrait.large # => "https://images.evetech.net/Character/1337512245_256.jpg"
|
585
548
|
character_portrait.huge # => "https://images.evetech.net/Character/1337512245_512.jpg"
|
586
549
|
character_portrait.small # => "https://images.evetech.net/Character/1337512245_64.jpg"
|
587
|
-
|
588
|
-
character_portrait.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
|
589
550
|
```
|
590
551
|
|
591
552
|
#### Get character corporation roles
|
@@ -610,8 +571,6 @@ standing.as_json # => {:from_id=>500001,
|
|
610
571
|
standing.from_id # => 500001
|
611
572
|
standing.from_type # => "faction"
|
612
573
|
standing.standing # => 0.3303719111639991
|
613
|
-
|
614
|
-
# TODO: character_standing.etag
|
615
574
|
```
|
616
575
|
|
617
576
|
#### Yearly aggregate stats
|
@@ -653,8 +612,6 @@ jump_clone.implant_ids # => [22118]
|
|
653
612
|
character_clones.last_clone_jump_date # => Fri, 27 Jul 2012 14:50:11 UTC +00:00
|
654
613
|
|
655
614
|
character_clones.last_station_change_date # => Tue, 30 Jun 2015 21:51:13 UTC +00:00
|
656
|
-
|
657
|
-
# TODO: character_clones.etag
|
658
615
|
```
|
659
616
|
|
660
617
|
#### Get active implants
|
@@ -669,8 +626,6 @@ character_implants.scope # => "esi-clones.read_implants.v1"
|
|
669
626
|
character_implants.implant_ids.size # => 5
|
670
627
|
|
671
628
|
character_implants.implant_ids # => [9899, 9941, 9942, 9943, 9956]
|
672
|
-
|
673
|
-
# TODO: character_implants.etag
|
674
629
|
```
|
675
630
|
|
676
631
|
### Contacts
|
@@ -753,8 +708,6 @@ contract.status # => "finished"
|
|
753
708
|
contract.title # => ""
|
754
709
|
contract.type # => "item_exchange"
|
755
710
|
contract.volume # => 15000.0
|
756
|
-
|
757
|
-
contracts.etag # => "6e18566a8f786f08aba678262360d0c74a783f9923aa43f8043133e4"
|
758
711
|
```
|
759
712
|
|
760
713
|
#### Get contract bids
|
@@ -811,8 +764,6 @@ contract.start_location_id # => 60008494
|
|
811
764
|
contract.title # => "Apostle Me10/Te16 Complete Bpc 10 Pack"
|
812
765
|
contract.kind # => "item_exchange"
|
813
766
|
contract.volume # => 100.0
|
814
|
-
|
815
|
-
contracts.etag # => "3f7fdf9a69e35bb35d619b6cb5043a2766d11ca6306a8b5af369ce6e"
|
816
767
|
```
|
817
768
|
|
818
769
|
#### Get public contract bids
|
@@ -851,8 +802,6 @@ item.record_id # => 3210378611
|
|
851
802
|
item.runs # => 400
|
852
803
|
item.time_efficiency # => 20
|
853
804
|
item.type_id # => 29040
|
854
|
-
|
855
|
-
contract.etag # => "d458c3f56c114882a9ecfe1aaf173837310b15b6e7cef86a019e700f"
|
856
805
|
```
|
857
806
|
|
858
807
|
#### Get public contract items
|
@@ -903,8 +852,6 @@ corporation.tax_rate # => 0.1
|
|
903
852
|
corporation.ticker # => "BUBIC"
|
904
853
|
corporation.corporation_url # => "http://"
|
905
854
|
corporation.war_eligible # => true
|
906
|
-
|
907
|
-
corporation.etag # => "046430260be73e5d7ad3a9251954310bd547498eeb38f99e8d305796"
|
908
855
|
```
|
909
856
|
|
910
857
|
#### Get alliance history
|
@@ -931,8 +878,6 @@ entry.alliance_id # => 99005874
|
|
931
878
|
entry.is_deleted # => nil
|
932
879
|
entry.record_id # => 1254640
|
933
880
|
entry.start_date # => Mon, 03 Jun 2019 00:17:00 UTC +00:00
|
934
|
-
|
935
|
-
corporation_alliance_history.etag # => "9a949294cfa5fcef345ea8d89a574defa09be39845b9b97f1fdddd41"
|
936
881
|
```
|
937
882
|
|
938
883
|
#### Get corporation blueprints
|
@@ -971,8 +916,6 @@ blueprint.time_efficiency # => 20
|
|
971
916
|
blueprint.type_id # => 31803
|
972
917
|
|
973
918
|
corporation_blueprints.roles # => ["Director"]
|
974
|
-
|
975
|
-
# TODO: corporation_blueprints.etag
|
976
919
|
```
|
977
920
|
|
978
921
|
#### Get all corporation ALSC logs
|
@@ -999,8 +942,6 @@ corporation_members.scope # => "esi-corporations.read_corporation_membership.v1"
|
|
999
942
|
corporation_members.character_ids.size # => 118
|
1000
943
|
|
1001
944
|
corporation_members.character_ids.first # => 2114220544
|
1002
|
-
|
1003
|
-
corporation_members.etag # => "6094aeb7f2c2754a7d1f210eed73f1f858042330852fac847a477a59"
|
1004
945
|
```
|
1005
946
|
|
1006
947
|
#### Get corporation member limit
|
@@ -1035,8 +976,6 @@ corporation_npcs.scope # => nil
|
|
1035
976
|
corporation_npcs.corporation_npc_ids.size # => 262
|
1036
977
|
|
1037
978
|
corporation_npcs.corporation_npc_ids.first # => 1000001
|
1038
|
-
|
1039
|
-
corporation_npcs.etag # => "085946820256a4f7be2e9926e9d1de9e420cca53ffb31f7547740a05"
|
1040
979
|
```
|
1041
980
|
|
1042
981
|
### Dogma
|
@@ -1051,8 +990,6 @@ dogma_attributes.scope # => nil
|
|
1051
990
|
dogma_attributes.attribute_ids.size # => 2469
|
1052
991
|
|
1053
992
|
dogma_attributes.attribute_ids.first # => 2
|
1054
|
-
|
1055
|
-
dogma_attributes.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
|
1056
993
|
```
|
1057
994
|
|
1058
995
|
#### Get attribute information
|
@@ -1085,8 +1022,6 @@ dogma_attribute.name # => "isOnline"
|
|
1085
1022
|
dogma_attribute.published # => nil
|
1086
1023
|
dogma_attribute.stackable # => true
|
1087
1024
|
dogma_attribute.unit_id # => nil
|
1088
|
-
|
1089
|
-
dogma_attribute.etag # => "acc1e563574a55f79ebe4a2a99845dd6c28f4e412e11fd084b8485fd"
|
1090
1025
|
```
|
1091
1026
|
|
1092
1027
|
#### Get dynamic item information
|
@@ -1101,8 +1036,6 @@ dogma_effects.scope # => nil
|
|
1101
1036
|
dogma_effects.effect_ids.size # => 4166
|
1102
1037
|
|
1103
1038
|
dogma_effects.effect_ids.first # => 4
|
1104
|
-
|
1105
|
-
dogma_effects.etag # => "5c9218218aca123ef8c106f6607bfe8e6e086d2fc2b972bbd8ff03d2"
|
1106
1039
|
```
|
1107
1040
|
|
1108
1041
|
#### Get effect information
|
@@ -1173,8 +1106,6 @@ modifier.func # => "LocationRequiredSkillModifier"
|
|
1173
1106
|
modifier.modified_attribute_id # => 73
|
1174
1107
|
modifier.modifying_attribute_id # => 2458
|
1175
1108
|
modifier.operator # => 6
|
1176
|
-
|
1177
|
-
dogma_effect.etag # => "acc1e563574a55f79ebe4a2a99845dd6c28f4e412e11fd084b8485fd"
|
1178
1109
|
```
|
1179
1110
|
|
1180
1111
|
### Faction Warfare
|
@@ -1297,8 +1228,6 @@ job.start_date # => Sat, 18 Nov 2017 10:16:14 UTC +00:00
|
|
1297
1228
|
job.station_id # => 1023579231924
|
1298
1229
|
job.status # => "active"
|
1299
1230
|
job.successful_runs # => nil
|
1300
|
-
|
1301
|
-
# TODO: character_jobs.etag
|
1302
1231
|
```
|
1303
1232
|
|
1304
1233
|
#### Character mining ledger
|
@@ -1373,8 +1302,6 @@ job.status # => "active"
|
|
1373
1302
|
job.successful_runs # => nil
|
1374
1303
|
|
1375
1304
|
corporation_jobs.roles # => ["Factory_Manager"]
|
1376
|
-
|
1377
|
-
# TODO: corporation_jobs.etag
|
1378
1305
|
```
|
1379
1306
|
|
1380
1307
|
#### List industry facilities
|
@@ -1409,8 +1336,6 @@ killmail.as_json # => {:killmail_hash=>"8f1450fca8ce97be9b10e106a1257088407ef387
|
|
1409
1336
|
|
1410
1337
|
killmail.killmail_hash # => "8f1450fca8ce97be9b10e106a1257088407ef387"
|
1411
1338
|
killmail.killmail_id # => 81646519
|
1412
|
-
|
1413
|
-
character_killmails.etag # => "ba5068bc1b07db98d9efce93437295fbdb9d29b14b4ffbcbfa91ac0d"
|
1414
1339
|
```
|
1415
1340
|
|
1416
1341
|
#### Get a corporation's recent kills and losses
|
@@ -1437,8 +1362,6 @@ killmail.killmail_hash # => "07f7ef1d7f6090e78d8e85b4a98e680f67b5e9d5"
|
|
1437
1362
|
killmail.killmail_id # => 72410059
|
1438
1363
|
|
1439
1364
|
corporation_killmails.roles # => ["Director"]
|
1440
|
-
|
1441
|
-
# TODO: corporation_killmails.etag
|
1442
1365
|
```
|
1443
1366
|
|
1444
1367
|
#### Get a single killmail
|
@@ -1469,8 +1392,6 @@ character_location.as_json # => {:solar_system_id=>30004971,
|
|
1469
1392
|
character_location.solar_system_id # => 30004971
|
1470
1393
|
character_location.station_id # => 60014689
|
1471
1394
|
character_location.structure_id # => nil
|
1472
|
-
|
1473
|
-
# TODO: character_location.etag
|
1474
1395
|
```
|
1475
1396
|
|
1476
1397
|
#### Get character online
|
@@ -1491,8 +1412,6 @@ character_online.last_login # => Sun, 15 Jan 2017 11:39:24 UTC +00:00
|
|
1491
1412
|
character_online.last_logout # => Sun, 15 Jan 2017 11:31:22 UTC +00:00
|
1492
1413
|
character_online.logins # => 370
|
1493
1414
|
character_online.online # => false
|
1494
|
-
|
1495
|
-
character_online.etag # => "43c82cdefedc4275da30d7731200df96b905dc94b8486d55bedb5fe6"
|
1496
1415
|
```
|
1497
1416
|
|
1498
1417
|
#### Get current ship
|
@@ -1511,8 +1430,6 @@ character_ship.as_json # => {:ship_item_id=>1002312158069,
|
|
1511
1430
|
character_ship.ship_item_id # => 1002312158069
|
1512
1431
|
character_ship.ship_name # => "Green Black's Velator"
|
1513
1432
|
character_ship.ship_type_id # => 606
|
1514
|
-
|
1515
|
-
# TODO: character_ship.etag
|
1516
1433
|
```
|
1517
1434
|
|
1518
1435
|
### Loyalty
|
@@ -1534,8 +1451,6 @@ loyalty_point.as_json # => {:corporation_id=>1000035, :loyalty_points=>14163}
|
|
1534
1451
|
|
1535
1452
|
loyalty_point.corporation_id # => 1000035
|
1536
1453
|
loyalty_point.loyalty_points # => 14163
|
1537
|
-
|
1538
|
-
character_loyalty_points.etag # => "b6f4d03c84350052a2e95e3b098c41b1c50f938ffe3f6da7fc1c1698"
|
1539
1454
|
```
|
1540
1455
|
|
1541
1456
|
#### List loyalty store offers
|
@@ -1573,8 +1488,6 @@ offer_required_item = offer.offer_required_items.first
|
|
1573
1488
|
|
1574
1489
|
offer_required_item.quantity # => 5000
|
1575
1490
|
offer_required_item.type_id # => 234
|
1576
|
-
|
1577
|
-
corporation_loyalty_store_offers.etag # => "89211f42fde090e4d22621e9b97d7604ab87af95b3b6ffed7fe81bc0"
|
1578
1491
|
```
|
1579
1492
|
|
1580
1493
|
### Mail
|
@@ -1626,8 +1539,6 @@ recipient.as_json # => {:recipient_id=>98134807,
|
|
1626
1539
|
|
1627
1540
|
recipient.recipient_id # => 98134807
|
1628
1541
|
recipient.recipient_type # => "corporation"
|
1629
|
-
|
1630
|
-
character_mail.etag # => "90dba7f7a6e60bfe8527b9f5112b9ca588c8f57d01415717be525a91"
|
1631
1542
|
```
|
1632
1543
|
|
1633
1544
|
#### Update metadata about a mail
|
@@ -1659,8 +1570,6 @@ label.color # => "#ffffff"
|
|
1659
1570
|
label.label_id # => 8
|
1660
1571
|
label.name # => "[Alliance]"
|
1661
1572
|
label.unread_count # => 227
|
1662
|
-
|
1663
|
-
character_mail_labels.etag # => "265cfe7f2d7df2273342ed75c92b5047af6f76a3807dcc8353b5f379"
|
1664
1573
|
```
|
1665
1574
|
|
1666
1575
|
#### Create a mail label
|
@@ -1711,8 +1620,6 @@ order.volume_remain
|
|
1711
1620
|
order.volume_total
|
1712
1621
|
|
1713
1622
|
# TODO: update example
|
1714
|
-
|
1715
|
-
# TODO: character_orders.etag
|
1716
1623
|
```
|
1717
1624
|
|
1718
1625
|
#### List historical orders by a character
|
@@ -1757,8 +1664,6 @@ order.wallet_division
|
|
1757
1664
|
# TODO: update
|
1758
1665
|
|
1759
1666
|
corporation_orders.roles # => ["Accountant", "Trader"]
|
1760
|
-
|
1761
|
-
# TODO: corporation_orders.etag
|
1762
1667
|
```
|
1763
1668
|
|
1764
1669
|
#### List historical orders from a corporation
|
@@ -1791,8 +1696,6 @@ stats_today.highest # => 620169950.0
|
|
1791
1696
|
stats_today.lowest # => 579060022.71
|
1792
1697
|
stats_today.order_count # => 44
|
1793
1698
|
stats_today.volume # => 44
|
1794
|
-
|
1795
|
-
market_history.etag # => "01636947a53db63a0369aab78bbc98bae94a49cd6aa3950c29d588ae"
|
1796
1699
|
```
|
1797
1700
|
|
1798
1701
|
#### List orders in a region
|
@@ -1809,8 +1712,6 @@ market_groups.scope # => nil
|
|
1809
1712
|
market_groups.market_group_ids.size # => 1872
|
1810
1713
|
|
1811
1714
|
market_groups.market_group_ids.first # => 2
|
1812
|
-
|
1813
|
-
market_groups.etag # => "bf7832bfc20f5f9fdeddc9cb0360b941067310e7e3a2a80315b45a43"
|
1814
1715
|
```
|
1815
1716
|
|
1816
1717
|
#### Get item group information
|
@@ -1835,8 +1736,6 @@ market_group.parent_group_id # => 532
|
|
1835
1736
|
market_group.type_ids.size # => 48
|
1836
1737
|
|
1837
1738
|
market_group.type_ids.first # => 28802
|
1838
|
-
|
1839
|
-
market_group.etag # => "bf7832bfc20f5f9fdeddc9cb0360b941067310e7e3a2a80315b45a43"
|
1840
1739
|
```
|
1841
1740
|
|
1842
1741
|
#### List market prices
|
@@ -1858,8 +1757,6 @@ market_price.as_json # => {:adjusted_price=>923296.88,
|
|
1858
1757
|
market_price.adjusted_price # => 923296.88
|
1859
1758
|
market_price.average_price # => 1273871.6
|
1860
1759
|
market_price.type_id # => 32772
|
1861
|
-
|
1862
|
-
market_prices.etag # => "2d5acc3bd4555821bb91d787596f5ddad129f849739e83162e93c02f"
|
1863
1760
|
```
|
1864
1761
|
|
1865
1762
|
#### List orders in a structure
|
@@ -1926,8 +1823,6 @@ search.region_ids # => []
|
|
1926
1823
|
search.solar_system_ids # => [30000142]
|
1927
1824
|
search.station_ids # => []
|
1928
1825
|
|
1929
|
-
search.etag # => "b6602e595e8d8df37b5191b82e75faba91284281b6fe71965d09e2f1"
|
1930
|
-
|
1931
1826
|
# strict search
|
1932
1827
|
|
1933
1828
|
options = { search: "Jita", strict: true }
|
@@ -1999,8 +1894,6 @@ character_attributes.last_remap_date # => Sat, 07 May 2011 12:58:06 UTC +00:00
|
|
1999
1894
|
character_attributes.memory # => 24
|
2000
1895
|
character_attributes.perception # => 23
|
2001
1896
|
character_attributes.willpower # => 23
|
2002
|
-
|
2003
|
-
# TODO: character_attributes.etag
|
2004
1897
|
```
|
2005
1898
|
|
2006
1899
|
#### Get character's skill queue
|
@@ -2033,8 +1926,6 @@ skill_queue_entry.queue_position # => 0
|
|
2033
1926
|
skill_queue_entry.skill_id # => 12487
|
2034
1927
|
skill_queue_entry.start_date # => Sun, 15 Jan 2017 11:38:25 UTC +00:00
|
2035
1928
|
skill_queue_entry.training_start_sp # => 7263
|
2036
|
-
|
2037
|
-
# TODO: character_skill_queue.etag
|
2038
1929
|
```
|
2039
1930
|
|
2040
1931
|
#### Get character skills
|
@@ -2064,8 +1955,6 @@ skill.trained_skill_level # => 1
|
|
2064
1955
|
|
2065
1956
|
character_skills.total_sp # => 50362576
|
2066
1957
|
character_skills.unallocated_sp # => 656000
|
2067
|
-
|
2068
|
-
# TODO: character_skills.etag
|
2069
1958
|
```
|
2070
1959
|
|
2071
1960
|
### Sovereignty
|
@@ -2094,8 +1983,6 @@ server_status.players # => 34545
|
|
2094
1983
|
server_status.server_version # => "1135520"
|
2095
1984
|
server_status.start_time # => Tue, 11 Apr 2017 11:05:35 UTC +00:00
|
2096
1985
|
server_status.vip # => nil
|
2097
|
-
|
2098
|
-
server_status.etag # => "005dd5b02fc9e032466c49b28ff7fcb4fa37c56e5c361a1e25ec6cfd"
|
2099
1986
|
```
|
2100
1987
|
|
2101
1988
|
### Universe
|
@@ -2126,8 +2013,6 @@ ancestry.icon_id # => 1664
|
|
2126
2013
|
ancestry.ancestry_id # => 24
|
2127
2014
|
ancestry.name # => "Slave Child"
|
2128
2015
|
ancestry.short_description # => "Torn from the cold and brought to the warmth of a new life."
|
2129
|
-
|
2130
|
-
ancestries.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2131
2016
|
```
|
2132
2017
|
|
2133
2018
|
#### Get asteroid belt information
|
@@ -2152,8 +2037,6 @@ asteroid_belt.position.as_json # => {:x=>161967513600.0,
|
|
2152
2037
|
asteroid_belt.position.x # => 161967513600.0
|
2153
2038
|
asteroid_belt.position.y # => 21288837120.0
|
2154
2039
|
asteroid_belt.position.z # => -73505464320.0
|
2155
|
-
|
2156
|
-
asteroid_belt.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
|
2157
2040
|
```
|
2158
2041
|
|
2159
2042
|
#### Get bloodlines
|
@@ -2192,8 +2075,6 @@ bloodline.perception # => 9
|
|
2192
2075
|
bloodline.race_id # => 2
|
2193
2076
|
bloodline.ship_type_id # => 588
|
2194
2077
|
bloodline.willpower # => 7
|
2195
|
-
|
2196
|
-
bloodlines.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2197
2078
|
```
|
2198
2079
|
|
2199
2080
|
#### Get item categories
|
@@ -2206,8 +2087,6 @@ categories.scope # => nil
|
|
2206
2087
|
categories.category_ids.size # => 43
|
2207
2088
|
|
2208
2089
|
categories.category_ids.first # => 0
|
2209
|
-
|
2210
|
-
categories.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
|
2211
2090
|
```
|
2212
2091
|
|
2213
2092
|
#### Get item category information
|
@@ -2229,8 +2108,6 @@ category.published # => true
|
|
2229
2108
|
|
2230
2109
|
category.group_ids.size # => 46
|
2231
2110
|
category.group_ids.first # => 25
|
2232
|
-
|
2233
|
-
category.etag # => "37a39e7a5f5ecc07b19a3128c319f1198d035aee10052d0a21ccdd94"
|
2234
2111
|
```
|
2235
2112
|
|
2236
2113
|
#### Get constellations
|
@@ -2243,8 +2120,6 @@ constellations.scope # => nil
|
|
2243
2120
|
constellations.constellation_ids.size # => 1146
|
2244
2121
|
|
2245
2122
|
constellations.constellation_ids.first # => 20000001
|
2246
|
-
|
2247
|
-
constellations.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
|
2248
2123
|
```
|
2249
2124
|
|
2250
2125
|
#### Get constellation information
|
@@ -2273,8 +2148,6 @@ constellation.position.as_json # => {:x=>-9.404655970099134e+16,
|
|
2273
2148
|
constellation.position.x # => -9.404655970099134e+16
|
2274
2149
|
constellation.position.y # => 4.952015315379885e+16
|
2275
2150
|
constellation.position.z # => -4.273873181840197e+16
|
2276
|
-
|
2277
|
-
constellation.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
|
2278
2151
|
```
|
2279
2152
|
|
2280
2153
|
#### Get factions
|
@@ -2311,8 +2184,6 @@ faction.size_factor # => 5.0
|
|
2311
2184
|
faction.solar_system_id # => 30002544
|
2312
2185
|
faction.station_count # => 570
|
2313
2186
|
faction.station_system_count # => 291
|
2314
|
-
|
2315
|
-
factions.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2316
2187
|
```
|
2317
2188
|
|
2318
2189
|
#### Get graphics
|
@@ -2325,8 +2196,6 @@ graphics.scope # => nil
|
|
2325
2196
|
graphics.graphic_ids.size # => 3702
|
2326
2197
|
|
2327
2198
|
graphics.graphic_ids.first # => 20480
|
2328
|
-
|
2329
|
-
graphics.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2330
2199
|
```
|
2331
2200
|
|
2332
2201
|
#### Get graphic information
|
@@ -2355,8 +2224,6 @@ graphic.sof_dna # => "ai1_t1:tash-murkon:amarr"
|
|
2355
2224
|
graphic.sof_fation_name # => "tash-murkon"
|
2356
2225
|
graphic.sof_hull_name # => "ai1_t1"
|
2357
2226
|
graphic.sof_race_name # => "amarr"
|
2358
|
-
|
2359
|
-
graphic.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2360
2227
|
```
|
2361
2228
|
|
2362
2229
|
#### Get item groups
|
@@ -2375,8 +2242,6 @@ groups.total_pages # => 2
|
|
2375
2242
|
groups.group_ids.size # => 1000
|
2376
2243
|
|
2377
2244
|
groups.group_ids.first # => 0
|
2378
|
-
|
2379
|
-
groups.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2380
2245
|
```
|
2381
2246
|
|
2382
2247
|
#### Get item group information
|
@@ -2398,8 +2263,6 @@ group.group_id # => 450
|
|
2398
2263
|
group.name # => "Arkonor"
|
2399
2264
|
group.published # => true
|
2400
2265
|
group.type_ids # => [22, 17425, 17426, 26852, 28367, 28385, 28387, 28625, 46678, 46691]
|
2401
|
-
|
2402
|
-
group.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2403
2266
|
```
|
2404
2267
|
|
2405
2268
|
#### Bulk names to IDs
|
@@ -2428,8 +2291,6 @@ moon.position.as_json # => {:x=>162088094286.0,
|
|
2428
2291
|
moon.position.x # => 162088094286.0
|
2429
2292
|
moon.position.y # => 21314854783.0
|
2430
2293
|
moon.position.z # => -73598621491.0
|
2431
|
-
|
2432
|
-
moon.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2433
2294
|
```
|
2434
2295
|
|
2435
2296
|
#### Get names and categories for a set of ID's
|
@@ -2460,8 +2321,6 @@ planet.position.as_json # => {:x=>161891117336.0,
|
|
2460
2321
|
planet.position.x # => 161891117336.0
|
2461
2322
|
planet.position.y # => 21288951986.0
|
2462
2323
|
planet.position.z # => -73529712226.0
|
2463
|
-
|
2464
|
-
planet.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2465
2324
|
```
|
2466
2325
|
|
2467
2326
|
#### Get character races
|
@@ -2486,8 +2345,6 @@ race.faction_id # => 500002
|
|
2486
2345
|
race.description # => "Once a thriving tribal civilization, the Minmatar..."
|
2487
2346
|
race.name # => "Minmatar"
|
2488
2347
|
race.race_id # => 2
|
2489
|
-
|
2490
|
-
races.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2491
2348
|
```
|
2492
2349
|
|
2493
2350
|
#### Get regions
|
@@ -2500,8 +2357,6 @@ regions.scope # => nil
|
|
2500
2357
|
regions.universe_region_ids.size # => 106
|
2501
2358
|
|
2502
2359
|
regions.universe_region_ids.first # => 10000001
|
2503
|
-
|
2504
|
-
regions.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
|
2505
2360
|
```
|
2506
2361
|
|
2507
2362
|
#### Get region information
|
@@ -2523,8 +2378,6 @@ region.region_id # => 10000001
|
|
2523
2378
|
|
2524
2379
|
region.constellation_ids.size # => 16
|
2525
2380
|
region.constellation_ids.first # => 20000001
|
2526
|
-
|
2527
|
-
region.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
|
2528
2381
|
```
|
2529
2382
|
|
2530
2383
|
#### Get stargate information
|
@@ -2557,8 +2410,6 @@ stargate.position.as_json # => {:x=>331516354560.0,
|
|
2557
2410
|
stargate.position.x # => 331516354560.0
|
2558
2411
|
stargate.position.y # => 43597455360.0
|
2559
2412
|
stargate.position.z # => -586353991680.0
|
2560
|
-
|
2561
|
-
stargate.etag # => "2e28835f91024608719726b655591d531125a023e122859d174923d5"
|
2562
2413
|
```
|
2563
2414
|
|
2564
2415
|
#### Get star information
|
@@ -2587,8 +2438,6 @@ star.solar_system_id # => 30000001
|
|
2587
2438
|
star.spectral_class # => "K2 V"
|
2588
2439
|
star.temperature # => 4567
|
2589
2440
|
star.type_id # => 45041
|
2590
|
-
|
2591
|
-
star.etag # => "2e28835f91024608719726b655591d531125a023e122859d174923d5"
|
2592
2441
|
```
|
2593
2442
|
|
2594
2443
|
#### Get station information
|
@@ -2662,8 +2511,6 @@ station.position.as_json # => {:x=>-1106145239040.0,
|
|
2662
2511
|
station.position.x # => -1106145239040.0
|
2663
2512
|
station.position.y # => -145460060160.0
|
2664
2513
|
station.position.z # => 182618726400.0
|
2665
|
-
|
2666
|
-
station.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2667
2514
|
```
|
2668
2515
|
|
2669
2516
|
#### List all public structures
|
@@ -2677,8 +2524,6 @@ structures.structure_ids.size # => 3654
|
|
2677
2524
|
|
2678
2525
|
structures.structure_ids.first # => 1027528548355
|
2679
2526
|
|
2680
|
-
structures.etag # => "1b64f9a8268bb3ba350acc7d7116bfd75dd9f88defb1bbc61771aec7"
|
2681
|
-
|
2682
2527
|
# with filter (`filter` is enum with values: nil, `market` and `manufacturing_basic`)
|
2683
2528
|
|
2684
2529
|
options = { filter: 'market' }
|
@@ -2688,8 +2533,6 @@ structures = EveOnline::ESI::UniverseStructures.new(options)
|
|
2688
2533
|
structures.structure_ids.size # => 108
|
2689
2534
|
|
2690
2535
|
structures.structure_ids.first # => 1030490622468
|
2691
|
-
|
2692
|
-
structures.etag # => "2a825ab50413f1efe5f558b8d093e1299389b2f2ce3fa191907f7209"
|
2693
2536
|
```
|
2694
2537
|
|
2695
2538
|
#### Get structure information
|
@@ -2709,8 +2552,6 @@ jump.as_json # => {:ship_jumps=>65, :system_id=>30002671}
|
|
2709
2552
|
|
2710
2553
|
jump.ship_jumps # => 65
|
2711
2554
|
jump.system_id # => 30002671
|
2712
|
-
|
2713
|
-
system_jumps.etag # => "40d7cfcdb494669846bedf8adadc47002986d8f5529508e8d5f8f552"
|
2714
2555
|
```
|
2715
2556
|
|
2716
2557
|
#### Get system kills
|
@@ -2733,8 +2574,6 @@ system_kill.npc_kills # => 89
|
|
2733
2574
|
system_kill.pod_kills # => 0
|
2734
2575
|
system_kill.ship_kills # => 5
|
2735
2576
|
system_kill.system_id # => 30005327
|
2736
|
-
|
2737
|
-
system_kills.etag # => "2075c203d2a11627ab68b039a61e1816b052e9c0016eca5f08b6a35e"
|
2738
2577
|
```
|
2739
2578
|
|
2740
2579
|
#### Get solar systems
|
@@ -2747,8 +2586,6 @@ systems.scope # => nil
|
|
2747
2586
|
systems.universe_system_ids.size # => 8285
|
2748
2587
|
|
2749
2588
|
systems.universe_system_ids.first # => 30000001
|
2750
|
-
|
2751
|
-
systems.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2752
2589
|
```
|
2753
2590
|
|
2754
2591
|
#### Get solar system information
|
@@ -2797,8 +2634,6 @@ planet.moon_ids # => [40000004]
|
|
2797
2634
|
system.stargate_ids # => [50000056, 50000057, 50000058]
|
2798
2635
|
|
2799
2636
|
system.station_ids # => [60012526, 60014437]
|
2800
|
-
|
2801
|
-
system.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2802
2637
|
```
|
2803
2638
|
|
2804
2639
|
#### Get types
|
@@ -2817,8 +2652,6 @@ types.total_pages # => 36
|
|
2817
2652
|
types.universe_type_ids.size # => 1000
|
2818
2653
|
|
2819
2654
|
types.universe_type_ids.first # => 0
|
2820
|
-
|
2821
|
-
types.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2822
2655
|
```
|
2823
2656
|
|
2824
2657
|
#### Get type information
|
@@ -2879,8 +2712,6 @@ type_dogma_effect.as_json # => {:effect_id=>596,
|
|
2879
2712
|
|
2880
2713
|
type_dogma_effect.effect_id # => 596
|
2881
2714
|
type_dogma_effect.is_default # => false
|
2882
|
-
|
2883
|
-
type.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
|
2884
2715
|
```
|
2885
2716
|
|
2886
2717
|
### User Interface
|
@@ -2909,8 +2740,6 @@ character_wallet.scope # => "esi-wallet.read_character_wallet.v1"
|
|
2909
2740
|
character_wallet.as_json # => {:wallet=>409488252.49}
|
2910
2741
|
|
2911
2742
|
character_wallet.wallet # => 409488252.49
|
2912
|
-
|
2913
|
-
character_wallet.etag # => "482786a491138fdf393f42c457424b0cd3f3c3c7c2c9afb3f55c618a"
|
2914
2743
|
```
|
2915
2744
|
|
2916
2745
|
#### Get character wallet journal
|
@@ -2957,8 +2786,6 @@ wallet_journal_entry.ref_type # => "bounty_prizes"
|
|
2957
2786
|
wallet_journal_entry.second_party_id # => 1337512245
|
2958
2787
|
wallet_journal_entry.tax # => nil
|
2959
2788
|
wallet_journal_entry.tax_receiver_id # => nil
|
2960
|
-
|
2961
|
-
character_wallet_journal.etag # => "b618a1a584f6aad53cb79c72d6de26d8c9210d0a18be1421d5355446"
|
2962
2789
|
```
|
2963
2790
|
|
2964
2791
|
#### Get wallet transactions
|
@@ -2995,8 +2822,6 @@ wallet_transaction.quantity # => 1
|
|
2995
2822
|
wallet_transaction.transaction_id # => 5296927639
|
2996
2823
|
wallet_transaction.type_id # => 3538
|
2997
2824
|
wallet_transaction.unit_price # => 99887.79
|
2998
|
-
|
2999
|
-
wallet_transactions.etag # => "55d0fbe8b408d6a76dab70c0a709d4e7c5dd58d4e0b7bd785549e268"
|
3000
2825
|
```
|
3001
2826
|
|
3002
2827
|
#### Returns a corporation's wallet balance
|
@@ -3027,8 +2852,6 @@ wars.war_ids.size # => 2000
|
|
3027
2852
|
|
3028
2853
|
wars.war_ids.first # => 629019
|
3029
2854
|
|
3030
|
-
wars.etag # => "1e90be747fd163e5d74ab7a949bf8ad3f1d6ecd365cac31c534ab046"
|
3031
|
-
|
3032
2855
|
# with max_war_id
|
3033
2856
|
|
3034
2857
|
options = { max_war_id: 10 }
|
@@ -3038,8 +2861,6 @@ wars = EveOnline::ESI::Wars.new(options)
|
|
3038
2861
|
wars.war_ids.size # => 9
|
3039
2862
|
|
3040
2863
|
wars.war_ids.first # => 9
|
3041
|
-
|
3042
|
-
wars.etag # => "f1c28227847464613c1cb82dfc8a8c859b7b6857fad2c2a54c562812"
|
3043
2864
|
```
|
3044
2865
|
|
3045
2866
|
#### Get war information
|
@@ -3100,8 +2921,6 @@ defender.alliance_id # => 99008228
|
|
3100
2921
|
defender.corporation_id # => nil
|
3101
2922
|
defender.isk_destroyed # => 0.0
|
3102
2923
|
defender.ships_killed # => 0
|
3103
|
-
|
3104
|
-
war.etag # => "3933b0baeaac259101f55fdad865c5590deeb9e1613fb2344b3db293"
|
3105
2924
|
```
|
3106
2925
|
|
3107
2926
|
#### List kills for a war
|
@@ -3126,8 +2945,6 @@ killmail.as_json # => {:killmail_hash=>"07f7ef1d7f6090e78d8e85b4a98e680f67b5e9d5
|
|
3126
2945
|
|
3127
2946
|
killmail.killmail_hash # => "07f7ef1d7f6090e78d8e85b4a98e680f67b5e9d5"
|
3128
2947
|
killmail.killmail_id # => 72410059
|
3129
|
-
|
3130
|
-
war_killmails.etag # => "12ee36a10ee0dbfb7f6691e1b27c8400fdca645f15e70ebc0a94b7ae"
|
3131
2948
|
```
|
3132
2949
|
|
3133
2950
|
## Exceptions
|
@@ -3149,7 +2966,6 @@ end
|
|
3149
2966
|
List of exceptions:
|
3150
2967
|
|
3151
2968
|
* `EveOnline::Exceptions::NoContent` when response returns status 204 without body.
|
3152
|
-
* `EveOnline::Exceptions::NotModified` when response returns status 304 without body.
|
3153
2969
|
* `EveOnline::Exceptions::BadRequest` when response returns status 400.
|
3154
2970
|
* `EveOnline::Exceptions::Unauthorized` when response returns status 401.
|
3155
2971
|
* `EveOnline::Exceptions::Forbidden` when response returns status 403.
|
@@ -3274,7 +3090,7 @@ Issue reports and pull requests are welcome on GitHub at <https://github.com/eve
|
|
3274
3090
|
|
3275
3091
|
## Author
|
3276
3092
|
|
3277
|
-
*
|
3093
|
+
* Ihor Zubkov (@biow0lf)
|
3278
3094
|
|
3279
3095
|
## Contributors
|
3280
3096
|
|