eve_online 0.29.0 → 0.34.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (200) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +62 -0
  3. data/.ruby-version +1 -1
  4. data/Appraisals +11 -0
  5. data/CHANGELOG.md +67 -0
  6. data/Gemfile +7 -10
  7. data/Gemfile.lock +77 -68
  8. data/Gemfile.mutant.lock +67 -59
  9. data/README.md +414 -136
  10. data/Rakefile +2 -2
  11. data/eve_online.gemspec +28 -27
  12. data/lib/eve_online.rb +226 -185
  13. data/lib/eve_online/esi/alliance.rb +6 -6
  14. data/lib/eve_online/esi/alliance_corporations.rb +4 -3
  15. data/lib/eve_online/esi/alliance_icon.rb +5 -4
  16. data/lib/eve_online/esi/alliances.rb +3 -2
  17. data/lib/eve_online/esi/base.rb +42 -32
  18. data/lib/eve_online/esi/character.rb +7 -6
  19. data/lib/eve_online/esi/character_assets.rb +4 -4
  20. data/lib/eve_online/esi/character_assets_locations.rb +4 -4
  21. data/lib/eve_online/esi/character_assets_names.rb +4 -4
  22. data/lib/eve_online/esi/character_attributes.rb +6 -6
  23. data/lib/eve_online/esi/character_blueprints.rb +4 -4
  24. data/lib/eve_online/esi/character_calendar.rb +4 -4
  25. data/lib/eve_online/esi/character_calendar_event.rb +4 -5
  26. data/lib/eve_online/esi/character_clones.rb +7 -7
  27. data/lib/eve_online/esi/{character_bookmarks.rb → character_contracts.rb} +9 -9
  28. data/lib/eve_online/esi/character_corporation_history.rb +4 -3
  29. data/lib/eve_online/esi/character_fatigue.rb +5 -5
  30. data/lib/eve_online/esi/character_get_mail.rb +37 -0
  31. data/lib/eve_online/esi/character_implants.rb +3 -3
  32. data/lib/eve_online/esi/character_industry_jobs.rb +4 -4
  33. data/lib/eve_online/esi/character_killmails_recent.rb +4 -4
  34. data/lib/eve_online/esi/character_location.rb +5 -5
  35. data/lib/eve_online/esi/character_loyalty_points.rb +3 -3
  36. data/lib/eve_online/esi/character_mail_labels.rb +40 -0
  37. data/lib/eve_online/esi/character_notifications.rb +3 -3
  38. data/lib/eve_online/esi/character_online.rb +5 -5
  39. data/lib/eve_online/esi/character_orders.rb +3 -3
  40. data/lib/eve_online/esi/character_portrait.rb +5 -4
  41. data/lib/eve_online/esi/character_ship.rb +4 -4
  42. data/lib/eve_online/esi/character_skill_queue.rb +3 -3
  43. data/lib/eve_online/esi/character_skills.rb +6 -6
  44. data/lib/eve_online/esi/character_standings.rb +3 -3
  45. data/lib/eve_online/esi/character_wallet.rb +3 -3
  46. data/lib/eve_online/esi/character_wallet_journal.rb +6 -6
  47. data/lib/eve_online/esi/character_wallet_transactions.rb +41 -0
  48. data/lib/eve_online/esi/corporation.rb +8 -7
  49. data/lib/eve_online/esi/corporation_alliance_history.rb +4 -3
  50. data/lib/eve_online/esi/corporation_assets.rb +5 -5
  51. data/lib/eve_online/esi/corporation_assets_locations.rb +5 -5
  52. data/lib/eve_online/esi/corporation_assets_names.rb +5 -5
  53. data/lib/eve_online/esi/corporation_blueprints.rb +5 -5
  54. data/lib/eve_online/esi/corporation_industry_jobs.rb +5 -5
  55. data/lib/eve_online/esi/corporation_killmails_recent.rb +5 -5
  56. data/lib/eve_online/esi/corporation_loyalty_store_offers.rb +4 -3
  57. data/lib/eve_online/esi/corporation_npc.rb +20 -0
  58. data/lib/eve_online/esi/corporation_orders.rb +5 -5
  59. data/lib/eve_online/esi/dogma_attribute.rb +7 -6
  60. data/lib/eve_online/esi/dogma_attributes.rb +3 -2
  61. data/lib/eve_online/esi/dogma_effect.rb +11 -11
  62. data/lib/eve_online/esi/dogma_effects.rb +3 -2
  63. data/lib/eve_online/esi/killmail.rb +30 -0
  64. data/lib/eve_online/esi/market_group.rb +39 -0
  65. data/lib/eve_online/esi/market_groups.rb +20 -0
  66. data/lib/eve_online/esi/market_history.rb +5 -4
  67. data/lib/eve_online/esi/market_prices.rb +27 -0
  68. data/lib/eve_online/esi/models/aggressor.rb +34 -0
  69. data/lib/eve_online/esi/models/alliance.rb +7 -7
  70. data/lib/eve_online/esi/models/alliance_icon.rb +2 -2
  71. data/lib/eve_online/esi/models/alliance_short.rb +2 -2
  72. data/lib/eve_online/esi/models/allies.rb +21 -0
  73. data/lib/eve_online/esi/models/ally.rb +24 -0
  74. data/lib/eve_online/esi/models/ancestry.rb +6 -6
  75. data/lib/eve_online/esi/models/asset.rb +8 -8
  76. data/lib/eve_online/esi/models/asset_location.rb +2 -2
  77. data/lib/eve_online/esi/models/asset_name.rb +2 -2
  78. data/lib/eve_online/esi/models/asteroid_belt.rb +3 -3
  79. data/lib/eve_online/esi/models/attributes.rb +8 -8
  80. data/lib/eve_online/esi/models/base.rb +2 -2
  81. data/lib/eve_online/esi/models/bloodline.rb +11 -11
  82. data/lib/eve_online/esi/models/blueprint.rb +8 -8
  83. data/lib/eve_online/esi/models/category.rb +4 -4
  84. data/lib/eve_online/esi/models/character.rb +12 -12
  85. data/lib/eve_online/esi/models/character_corporation_history.rb +4 -4
  86. data/lib/eve_online/esi/models/character_industry_job.rb +22 -22
  87. data/lib/eve_online/esi/models/character_location.rb +3 -3
  88. data/lib/eve_online/esi/models/character_order.rb +14 -14
  89. data/lib/eve_online/esi/models/character_portrait.rb +4 -4
  90. data/lib/eve_online/esi/models/character_ship.rb +3 -3
  91. data/lib/eve_online/esi/models/constellation.rb +5 -5
  92. data/lib/eve_online/esi/models/contract.rb +132 -0
  93. data/lib/eve_online/esi/models/coordinates.rb +3 -3
  94. data/lib/eve_online/esi/models/corporation.rb +14 -14
  95. data/lib/eve_online/esi/models/corporation_alliance_history.rb +4 -4
  96. data/lib/eve_online/esi/models/corporation_industry_job.rb +22 -22
  97. data/lib/eve_online/esi/models/corporation_order.rb +15 -15
  98. data/lib/eve_online/esi/models/defender.rb +34 -0
  99. data/lib/eve_online/esi/models/dogma_attribute.rb +10 -10
  100. data/lib/eve_online/esi/models/dogma_attribute_short.rb +2 -2
  101. data/lib/eve_online/esi/models/dogma_attributes.rb +1 -1
  102. data/lib/eve_online/esi/models/dogma_effect.rb +21 -21
  103. data/lib/eve_online/esi/models/dogma_effect_modifier.rb +6 -6
  104. data/lib/eve_online/esi/models/dogma_effect_modifiers.rb +1 -1
  105. data/lib/eve_online/esi/models/dogma_effect_short.rb +2 -2
  106. data/lib/eve_online/esi/models/dogma_effects.rb +1 -1
  107. data/lib/eve_online/esi/models/event.rb +5 -5
  108. data/lib/eve_online/esi/models/event_details.rb +10 -10
  109. data/lib/eve_online/esi/models/faction.rb +10 -10
  110. data/lib/eve_online/esi/models/fatigue.rb +3 -3
  111. data/lib/eve_online/esi/models/graphic.rb +8 -8
  112. data/lib/eve_online/esi/models/group.rb +5 -5
  113. data/lib/eve_online/esi/models/home_location.rb +2 -2
  114. data/lib/eve_online/esi/models/jump_clone.rb +5 -5
  115. data/lib/eve_online/esi/models/killmail.rb +47 -0
  116. data/lib/eve_online/esi/models/killmail_short.rb +2 -2
  117. data/lib/eve_online/esi/models/loyalty_point.rb +2 -2
  118. data/lib/eve_online/esi/models/loyalty_store_offer.rb +9 -8
  119. data/lib/eve_online/esi/models/mail.rb +49 -0
  120. data/lib/eve_online/esi/models/mail_label.rb +34 -0
  121. data/lib/eve_online/esi/models/mail_recipient.rb +24 -0
  122. data/lib/eve_online/esi/models/mail_recipients.rb +21 -0
  123. data/lib/eve_online/esi/models/market_group.rb +38 -0
  124. data/lib/eve_online/esi/models/market_history.rb +6 -6
  125. data/lib/eve_online/esi/models/market_price.rb +29 -0
  126. data/lib/eve_online/esi/models/moon.rb +4 -4
  127. data/lib/eve_online/esi/models/notification.rb +7 -7
  128. data/lib/eve_online/esi/models/offer_required_item.rb +24 -0
  129. data/lib/eve_online/esi/models/offer_required_items.rb +21 -0
  130. data/lib/eve_online/esi/models/online.rb +4 -4
  131. data/lib/eve_online/esi/models/planet.rb +5 -5
  132. data/lib/eve_online/esi/models/planet_short.rb +3 -3
  133. data/lib/eve_online/esi/models/position.rb +3 -3
  134. data/lib/eve_online/esi/models/race.rb +6 -6
  135. data/lib/eve_online/esi/models/region.rb +7 -8
  136. data/lib/eve_online/esi/models/server_status.rb +4 -4
  137. data/lib/eve_online/esi/models/skill.rb +4 -4
  138. data/lib/eve_online/esi/models/skill_queue_entry.rb +8 -8
  139. data/lib/eve_online/esi/models/standing.rb +3 -3
  140. data/lib/eve_online/esi/models/star.rb +8 -8
  141. data/lib/eve_online/esi/models/stargate.rb +14 -8
  142. data/lib/eve_online/esi/models/station.rb +12 -12
  143. data/lib/eve_online/esi/models/system.rb +10 -10
  144. data/lib/eve_online/esi/models/system_jump.rb +2 -2
  145. data/lib/eve_online/esi/models/system_kill.rb +4 -4
  146. data/lib/eve_online/esi/models/type.rb +16 -16
  147. data/lib/eve_online/esi/models/{wallet_journal_entry.rb → wallet_journal.rb} +16 -16
  148. data/lib/eve_online/esi/models/wallet_transaction.rb +66 -0
  149. data/lib/eve_online/esi/models/war.rb +69 -0
  150. data/lib/eve_online/esi/server_status.rb +4 -3
  151. data/lib/eve_online/esi/universe_ancestries.rb +4 -3
  152. data/lib/eve_online/esi/universe_asteroid_belt.rb +5 -4
  153. data/lib/eve_online/esi/universe_bloodlines.rb +4 -3
  154. data/lib/eve_online/esi/universe_categories.rb +3 -2
  155. data/lib/eve_online/esi/universe_category.rb +7 -6
  156. data/lib/eve_online/esi/universe_constellation.rb +7 -6
  157. data/lib/eve_online/esi/universe_constellations.rb +3 -2
  158. data/lib/eve_online/esi/universe_factions.rb +4 -3
  159. data/lib/eve_online/esi/universe_graphic.rb +7 -6
  160. data/lib/eve_online/esi/universe_graphics.rb +3 -2
  161. data/lib/eve_online/esi/universe_group.rb +7 -6
  162. data/lib/eve_online/esi/universe_groups.rb +4 -3
  163. data/lib/eve_online/esi/universe_moon.rb +5 -4
  164. data/lib/eve_online/esi/universe_planet.rb +6 -5
  165. data/lib/eve_online/esi/universe_races.rb +4 -3
  166. data/lib/eve_online/esi/universe_region.rb +8 -7
  167. data/lib/eve_online/esi/universe_regions.rb +3 -2
  168. data/lib/eve_online/esi/universe_star.rb +6 -6
  169. data/lib/eve_online/esi/universe_stargate.rb +6 -5
  170. data/lib/eve_online/esi/universe_station.rb +8 -7
  171. data/lib/eve_online/esi/universe_structures.rb +4 -3
  172. data/lib/eve_online/esi/universe_system.rb +8 -7
  173. data/lib/eve_online/esi/universe_system_jumps.rb +3 -2
  174. data/lib/eve_online/esi/universe_system_kills.rb +3 -2
  175. data/lib/eve_online/esi/universe_systems.rb +3 -2
  176. data/lib/eve_online/esi/universe_type.rb +9 -8
  177. data/lib/eve_online/esi/universe_types.rb +4 -3
  178. data/lib/eve_online/esi/war.rb +35 -0
  179. data/lib/eve_online/esi/war_killmails.rb +5 -4
  180. data/lib/eve_online/esi/wars.rb +4 -3
  181. data/lib/eve_online/exceptions/error_limited.rb +8 -0
  182. data/lib/eve_online/formulas/blueprint_copy_time.rb +47 -0
  183. data/lib/eve_online/version.rb +1 -1
  184. metadata +54 -27
  185. data/.rubocop-thread_safety.yml +0 -9
  186. data/.rubocop.yml +0 -14
  187. data/.rubocop_general.yml +0 -102
  188. data/.rubocop_rspec.yml +0 -65
  189. data/.rubocop_todo.yml +0 -0
  190. data/.travis.yml +0 -100
  191. data/gemfiles/activesupport_42.gemfile +0 -7
  192. data/gemfiles/activesupport_50.gemfile +0 -7
  193. data/gemfiles/activesupport_51.gemfile +0 -7
  194. data/gemfiles/activesupport_52.gemfile +0 -7
  195. data/gemfiles/activesupport_60.gemfile +0 -7
  196. data/gemfiles/activesupport_edge.gemfile +0 -7
  197. data/lib/eve_online/esi/character_bookmark_folders.rb +0 -41
  198. data/lib/eve_online/esi/models/bookmark.rb +0 -71
  199. data/lib/eve_online/esi/models/bookmark_folder.rb +0 -24
  200. data/lib/eve_online/esi/models/stargate_destination.rb +0 -24
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2c1a21bed149183cb8ad83b75334d7afcb385370f3f8cd93013d0edb265b021
4
- data.tar.gz: bef9fa5095709f5dc8542e14d03f3ec618da3146bd401b1d486866f445ad9cc5
3
+ metadata.gz: 9cadda78a7d2823ea8f60726c89e502e1caa67ee86dd28e038cb572f5fe80071
4
+ data.tar.gz: 0cf160ff1abfd87caa400555de5c69e5b9625265ea1b581480e22a84cdde8793
5
5
  SHA512:
6
- metadata.gz: 39fd762c2f8275cac627a6cc5971edbfd6692c36654aa28ffe20368881b3b60d678d12857d54b2c07f6747bc59c7fda18778a8a4d3fc1dc7db1fda5bfd34b024
7
- data.tar.gz: 23e62a90b8f0b407158d01611be86b91cfee43188545235ca7f391666b67e47668801f9173651279802d17cabddae71c4a029b0ad32dd88d37f06203f7a19f5c
6
+ metadata.gz: b91ba41d06502f88b69af1de359bbf2f3c10b2fe515590e3fc574cc3216a404c5dc02a959b6a00491a1ee6e4d9284e68a9dad2ff2ac682077a6272326d922523
7
+ data.tar.gz: 3bf4ea87dfc8ef0198828da27ba2ce54f34cbb2c46f94f2e824c71f5aeb2ae24733bb508d927c4cd8e540cda83b53c713d4305bc3e66bc8de6ebfaedf306c1c3
@@ -0,0 +1,62 @@
1
+ version: 2
2
+
3
+ jobs:
4
+ ruby-2.5.8:
5
+ docker:
6
+ - image: circleci/ruby:2.5.8
7
+ steps:
8
+ - checkout
9
+ - run: rm Gemfile.lock
10
+ - run: rm .ruby-version
11
+ - run: bundle install
12
+ - run: bundle exec appraisal install || true
13
+ - run: bundle exec appraisal rake
14
+ - run: bundle exec standardrb
15
+ - run: bundle exec mdl README.md CHANGELOG.md TODO.md
16
+ ruby-2.6.6:
17
+ docker:
18
+ - image: circleci/ruby:2.6.6
19
+ steps:
20
+ - checkout
21
+ - run: rm Gemfile.lock
22
+ - run: rm .ruby-version
23
+ - run: bundle install
24
+ - run: bundle exec appraisal install || true
25
+ - run: bundle exec appraisal rake
26
+ - run: bundle exec standardrb
27
+ - run: bundle exec mdl README.md CHANGELOG.md TODO.md
28
+ ruby-2.7.1:
29
+ docker:
30
+ - image: circleci/ruby:2.7.1
31
+ steps:
32
+ - checkout
33
+ - run: rm Gemfile.lock
34
+ - run: rm .ruby-version
35
+ - run: bundle install
36
+ - run: bundle exec appraisal install || true
37
+ - run: bundle exec appraisal rake
38
+ - run: bundle exec standardrb
39
+ - run: bundle exec mdl README.md CHANGELOG.md TODO.md
40
+ jruby-9.2.11.1:
41
+ docker:
42
+ - image: circleci/jruby:9.2.11.1
43
+ environment:
44
+ JRUBY_OPTS: "--debug -J-Xmn1024m -J-Xms2048m -J-Xmx2048m"
45
+ steps:
46
+ - checkout
47
+ - run: rm Gemfile.lock
48
+ - run: rm .ruby-version
49
+ - run: bundle install
50
+ - run: bundle exec appraisal install || true
51
+ - run: bundle exec appraisal rake
52
+ - run: bundle exec standardrb
53
+ - run: bundle exec mdl README.md CHANGELOG.md TODO.md
54
+
55
+ workflows:
56
+ version: 2
57
+ tests:
58
+ jobs:
59
+ - jruby-9.2.11.1
60
+ - ruby-2.5.8
61
+ - ruby-2.6.6
62
+ - ruby-2.7.1
@@ -1 +1 @@
1
- 2.6.3
1
+ 2.7.1
@@ -0,0 +1,11 @@
1
+ appraise "activesupport_52" do
2
+ gem "activesupport", "~> 5.2.0"
3
+ end
4
+
5
+ appraise "activesupport_60" do
6
+ gem "activesupport", "~> 6.0.0"
7
+ end
8
+
9
+ appraise "activesupport_edge" do
10
+ gem "activesupport", git: "https://github.com/rails/rails", require: "activesupport"
11
+ end
@@ -1,5 +1,72 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.34.0
4
+
5
+ * Rename `EveOnline::ESI::Models::Race#alliance_id` to `#faction_id`. [Fix esi issue 812](https://github.com/esi/esi-issues/issues/812).
6
+
7
+ ## v0.33.0
8
+
9
+ * Sync with new ESI API
10
+ * Add `EveOnline::Exceptions::ErrorLimited`
11
+
12
+ ## v0.32.0
13
+
14
+ * Sync with new ESI API
15
+ * Add `EveOnline::ESI::CharacterContracts`
16
+ * Add `EveOnline::ESI::Models::Contract`
17
+ * Add support `X-ESI-Error-Limit-Remain` header
18
+ * Add support `X-ESI-Error-Limit-Reset` header
19
+ * Add `EveOnline::ESI::Killmail`
20
+ * Add `EveOnline::ESI::MarketPrices`
21
+ * Add `EveOnline::ESI::Models::MarketPrice`
22
+ * Add `EveOnline::ESI::Models::WalletTransaction`
23
+ * Add `EveOnline::ESI::CharacterWalletTransactions`
24
+ * Rename `EveOnline::ESI::Models::WalletJournalEntry` to `EveOnline::ESI::Models::WalletJournal`
25
+ * Add `EveOnline::ESI::Models::Killmail`
26
+ * Rename `EveOnline::ESI::Models::WalletJournal#id` to `#wallet_journal_id` and update `#as_json`
27
+ * Add `EveOnline::Formulas::BlueprintCopyTime`
28
+ * Drop `EveOnline::ESI::CharacterBookmarkFolders`
29
+ * Drop `EveOnline::ESI::CharacterBookmarks`
30
+ * Drop `EveOnline::ESI::Models::Bookmark`
31
+ * Drop `EveOnline::ESI::Models::BookmarkFolder`
32
+ * Add `EveOnline::ESI::CorporationNPC`
33
+
34
+ ## v0.31.0
35
+
36
+ * Add `EveOnline::ESI::Models::MailRecipient`
37
+ * Add `EveOnline::ESI::Models::MailRecipients`
38
+ * Add `EveOnline::ESI::Models::Mail`
39
+ * Add `EveOnline::ESI::CharacterGetMail`
40
+ * Add `EveOnline::ESI::Models::MailLabel`
41
+ * Add `EveOnline::ESI::CharacterMailLabels`
42
+ * Ruby 2.7.0
43
+ * Rename `EveOnline::ESI::UniverseRegion#constellations` to `#constellation_ids`
44
+ * Remove `constellations` from `EveOnline::ESI::UniverseRegion#as_json`
45
+ * Add `EveOnline::ESI::Models::Stargate#destination_stargate_id`
46
+ * Add `EveOnline::ESI::Models::Stargate#destination_system_id`
47
+ * Add `destination_stargate_id` and `destination_system_id` to `EveOnline::ESI::Models::Stargate#as_json`
48
+ * Remove `EveOnline::ESI::Models::StargateDestination`
49
+ * Remove `EveOnline::ESI::UniverseStargate#destination`
50
+ * Add `EveOnline::ESI::UniverseStargate#destination_stargate_id`
51
+ * Add `EveOnline::ESI::UniverseStargate#destination_system_id`
52
+ * Drop datasource support
53
+
54
+ ## v0.30.0
55
+
56
+ * Add `EveOnline::ESI::Models::OfferRequiredItem`
57
+ * Add `EveOnline::ESI::Models::OfferRequiredItems`
58
+ * Implement `EveOnline::ESI::Models::LoyaltyStoreOffer#offer_required_items`
59
+ * Fix typo `#additation_query_params` -> `#additional_query_params`
60
+ * Add `EveOnline::ESI::Models::War`
61
+ * Add `EveOnline::ESI::War`
62
+ * Add `EveOnline::ESI::Models::Aggressor`
63
+ * Add `EveOnline::ESI::Models::Defender`
64
+ * Add `EveOnline::ESI::Models::Allies`
65
+ * Add `EveOnline::ESI::Models::Ally`
66
+ * Add `EveOnline::ESI::MarketGroups`
67
+ * Add `EveOnline::ESI::MarketGroup`
68
+ * Add `EveOnline::ESI::Models::MarketGroup`
69
+
3
70
  ## v0.29.0
4
71
 
5
72
  * Rails 6.0.0
data/Gemfile CHANGED
@@ -1,15 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- source 'https://rubygems.org'
3
+ source "https://rubygems.org"
4
4
 
5
- # Specify your gem's dependencies in eveonline.gemspec
5
+ # Specify your gem's dependencies in eve_online.gemspec
6
6
  gemspec
7
7
 
8
- gem 'nokogiri'
9
- gem 'awesome_print', require: 'ap'
10
- gem 'pry'
11
- gem 'rubocop', require: false
12
- gem 'rubocop-thread_safety', require: false
13
- gem 'rubocop-rspec', require: false
14
- gem 'rubocop-performance', require: false
15
- gem 'fasterer', require: false
8
+ gem "nokogiri"
9
+ gem "awesome_print", require: "ap"
10
+ gem "pry"
11
+ gem "standard", require: false
12
+ gem "fasterer", require: false
@@ -1,114 +1,126 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eve_online (0.29.0)
5
- activesupport (>= 4.2.0)
4
+ eve_online (0.34.0)
5
+ activesupport (>= 5.2.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (6.0.0)
10
+ activesupport (6.0.3.1)
11
11
  concurrent-ruby (~> 1.0, >= 1.0.2)
12
12
  i18n (>= 0.7, < 2)
13
13
  minitest (~> 5.1)
14
14
  tzinfo (~> 1.1)
15
- zeitwerk (~> 2.1, >= 2.1.8)
16
- addressable (2.6.0)
17
- public_suffix (>= 2.0.2, < 4.0)
15
+ zeitwerk (~> 2.2, >= 2.2.2)
16
+ addressable (2.7.0)
17
+ public_suffix (>= 2.0.2, < 5.0)
18
+ appraisal (2.3.0)
19
+ bundler
20
+ rake
21
+ thor (>= 0.14.0)
18
22
  ast (2.4.0)
19
23
  awesome_print (1.8.0)
20
- coderay (1.1.2)
24
+ coderay (1.1.3)
21
25
  colorize (0.8.1)
22
- concurrent-ruby (1.1.5)
26
+ concurrent-ruby (1.1.6)
23
27
  crack (0.4.3)
24
28
  safe_yaml (~> 1.0.0)
25
29
  diff-lcs (1.3)
26
30
  docile (1.3.2)
27
- fasterer (0.6.0)
31
+ fasterer (0.8.3)
28
32
  colorize (~> 0.7)
29
- ruby_parser (>= 3.13.0)
30
- hashdiff (1.0.0)
31
- i18n (1.6.0)
33
+ ruby_parser (>= 3.14.1)
34
+ hashdiff (1.0.1)
35
+ i18n (1.8.3)
32
36
  concurrent-ruby (~> 1.0)
33
- jaro_winkler (1.5.3)
34
- json (2.2.0)
35
- kramdown (1.17.0)
36
- mdl (0.5.0)
37
- kramdown (~> 1.12, >= 1.12.0)
38
- mixlib-cli (~> 1.7, >= 1.7.0)
39
- mixlib-config (~> 2.2, >= 2.2.1)
40
- method_source (0.9.2)
37
+ kramdown (2.2.1)
38
+ rexml
39
+ kramdown-parser-gfm (1.1.0)
40
+ kramdown (~> 2.0)
41
+ mdl (0.9.0)
42
+ kramdown (~> 2.0)
43
+ kramdown-parser-gfm (~> 1.0)
44
+ mixlib-cli (~> 2.1, >= 2.1.1)
45
+ mixlib-config (>= 2.2.1, < 4)
46
+ method_source (1.0.0)
41
47
  mini_portile2 (2.4.0)
42
- minitest (5.11.3)
43
- mixlib-cli (1.7.0)
44
- mixlib-config (2.2.18)
48
+ minitest (5.14.1)
49
+ mixlib-cli (2.1.6)
50
+ mixlib-config (3.0.6)
45
51
  tomlrb
46
- nokogiri (1.10.4)
52
+ nokogiri (1.10.9)
47
53
  mini_portile2 (~> 2.4.0)
48
- parallel (1.17.0)
49
- parser (2.6.3.0)
54
+ parallel (1.19.1)
55
+ parser (2.7.1.3)
50
56
  ast (~> 2.4.0)
51
- pry (0.12.2)
52
- coderay (~> 1.1.0)
53
- method_source (~> 0.9.0)
54
- public_suffix (3.1.1)
57
+ pry (0.13.1)
58
+ coderay (~> 1.1)
59
+ method_source (~> 1.0)
60
+ public_suffix (4.0.5)
55
61
  rainbow (3.0.0)
56
- rake (12.3.3)
57
- rspec (3.8.0)
58
- rspec-core (~> 3.8.0)
59
- rspec-expectations (~> 3.8.0)
60
- rspec-mocks (~> 3.8.0)
61
- rspec-core (3.8.2)
62
- rspec-support (~> 3.8.0)
63
- rspec-expectations (3.8.4)
62
+ rake (13.0.1)
63
+ regexp_parser (1.7.1)
64
+ rexml (3.2.4)
65
+ rspec (3.9.0)
66
+ rspec-core (~> 3.9.0)
67
+ rspec-expectations (~> 3.9.0)
68
+ rspec-mocks (~> 3.9.0)
69
+ rspec-core (3.9.2)
70
+ rspec-support (~> 3.9.3)
71
+ rspec-expectations (3.9.2)
64
72
  diff-lcs (>= 1.2.0, < 2.0)
65
- rspec-support (~> 3.8.0)
73
+ rspec-support (~> 3.9.0)
66
74
  rspec-its (1.3.0)
67
75
  rspec-core (>= 3.0.0)
68
76
  rspec-expectations (>= 3.0.0)
69
- rspec-mocks (3.8.1)
77
+ rspec-mocks (3.9.1)
70
78
  diff-lcs (>= 1.2.0, < 2.0)
71
- rspec-support (~> 3.8.0)
72
- rspec-support (3.8.2)
73
- rubocop (0.74.0)
74
- jaro_winkler (~> 1.5.1)
79
+ rspec-support (~> 3.9.0)
80
+ rspec-support (3.9.3)
81
+ rubocop (0.85.1)
75
82
  parallel (~> 1.10)
76
- parser (>= 2.6)
83
+ parser (>= 2.7.0.1)
77
84
  rainbow (>= 2.2.2, < 4.0)
85
+ regexp_parser (>= 1.7)
86
+ rexml
87
+ rubocop-ast (>= 0.0.3)
78
88
  ruby-progressbar (~> 1.7)
79
- unicode-display_width (>= 1.4.0, < 1.7)
80
- rubocop-performance (1.4.1)
89
+ unicode-display_width (>= 1.4.0, < 2.0)
90
+ rubocop-ast (0.0.3)
91
+ parser (>= 2.7.0.1)
92
+ rubocop-performance (1.6.1)
81
93
  rubocop (>= 0.71.0)
82
- rubocop-rspec (1.35.0)
83
- rubocop (>= 0.60.0)
84
- rubocop-thread_safety (0.3.4)
85
- rubocop (>= 0.51.0)
86
94
  ruby-progressbar (1.10.1)
87
- ruby_parser (3.13.1)
95
+ ruby_parser (3.14.2)
88
96
  sexp_processor (~> 4.9)
89
97
  safe_yaml (1.0.5)
90
- sexp_processor (4.12.1)
91
- simplecov (0.17.0)
98
+ sexp_processor (4.14.1)
99
+ simplecov (0.18.5)
92
100
  docile (~> 1.1)
93
- json (>= 1.8, < 3)
94
- simplecov-html (~> 0.10.0)
95
- simplecov-html (0.10.2)
101
+ simplecov-html (~> 0.11)
102
+ simplecov-html (0.12.2)
103
+ standard (0.4.7)
104
+ rubocop (~> 0.85.0)
105
+ rubocop-performance (~> 1.6.0)
106
+ thor (1.0.1)
96
107
  thread_safe (0.3.6)
97
- tomlrb (1.2.8)
98
- tzinfo (1.2.5)
108
+ tomlrb (1.3.0)
109
+ tzinfo (1.2.7)
99
110
  thread_safe (~> 0.1)
100
- unicode-display_width (1.6.0)
101
- vcr (5.0.0)
102
- webmock (3.6.2)
111
+ unicode-display_width (1.7.0)
112
+ vcr (6.0.0)
113
+ webmock (3.8.3)
103
114
  addressable (>= 2.3.6)
104
115
  crack (>= 0.3.2)
105
116
  hashdiff (>= 0.4.0, < 2.0.0)
106
- zeitwerk (2.1.9)
117
+ zeitwerk (2.3.0)
107
118
 
108
119
  PLATFORMS
109
120
  ruby
110
121
 
111
122
  DEPENDENCIES
123
+ appraisal
112
124
  awesome_print
113
125
  bundler
114
126
  eve_online!
@@ -119,13 +131,10 @@ DEPENDENCIES
119
131
  rake
120
132
  rspec
121
133
  rspec-its
122
- rubocop
123
- rubocop-performance
124
- rubocop-rspec
125
- rubocop-thread_safety
126
134
  simplecov
135
+ standard
127
136
  vcr
128
137
  webmock
129
138
 
130
139
  BUNDLED WITH
131
- 2.0.2
140
+ 2.1.4
@@ -1,135 +1,143 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eve_online (0.29.0)
5
- activesupport (>= 4.2.0)
4
+ eve_online (0.34.0)
5
+ activesupport (>= 5.2.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  abstract_type (0.0.7)
11
- activesupport (6.0.0)
11
+ activesupport (6.0.3.1)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 0.7, < 2)
14
14
  minitest (~> 5.1)
15
15
  tzinfo (~> 1.1)
16
- zeitwerk (~> 2.1, >= 2.1.8)
16
+ zeitwerk (~> 2.2, >= 2.2.2)
17
17
  adamantium (0.2.0)
18
18
  ice_nine (~> 0.11.0)
19
19
  memoizable (~> 0.4.0)
20
- addressable (2.6.0)
21
- public_suffix (>= 2.0.2, < 4.0)
20
+ addressable (2.7.0)
21
+ public_suffix (>= 2.0.2, < 5.0)
22
22
  anima (0.3.1)
23
23
  abstract_type (~> 0.0.7)
24
24
  adamantium (~> 0.2)
25
25
  equalizer (~> 0.0.11)
26
+ appraisal (2.3.0)
27
+ bundler
28
+ rake
29
+ thor (>= 0.14.0)
26
30
  ast (2.4.0)
27
31
  concord (0.1.5)
28
32
  adamantium (~> 0.2.0)
29
33
  equalizer (~> 0.0.9)
30
- concurrent-ruby (1.1.5)
34
+ concurrent-ruby (1.1.6)
31
35
  crack (0.4.3)
32
36
  safe_yaml (~> 1.0.0)
33
37
  diff-lcs (1.3)
34
38
  docile (1.3.2)
35
39
  equalizer (0.0.11)
36
- hashdiff (1.0.0)
37
- i18n (1.6.0)
40
+ hashdiff (1.0.1)
41
+ i18n (1.8.3)
38
42
  concurrent-ruby (~> 1.0)
39
43
  ice_nine (0.11.2)
40
- json (2.2.0)
41
- kramdown (1.17.0)
42
- mdl (0.5.0)
43
- kramdown (~> 1.12, >= 1.12.0)
44
- mixlib-cli (~> 1.7, >= 1.7.0)
45
- mixlib-config (~> 2.2, >= 2.2.1)
44
+ kramdown (2.2.1)
45
+ rexml
46
+ kramdown-parser-gfm (1.1.0)
47
+ kramdown (~> 2.0)
48
+ mdl (0.9.0)
49
+ kramdown (~> 2.0)
50
+ kramdown-parser-gfm (~> 1.0)
51
+ mixlib-cli (~> 2.1, >= 2.1.1)
52
+ mixlib-config (>= 2.2.1, < 4)
46
53
  memoizable (0.4.2)
47
54
  thread_safe (~> 0.3, >= 0.3.1)
48
55
  mini_portile2 (2.4.0)
49
- minitest (5.11.3)
50
- mixlib-cli (1.7.0)
51
- mixlib-config (2.2.18)
56
+ minitest (5.14.1)
57
+ mixlib-cli (2.1.6)
58
+ mixlib-config (3.0.6)
52
59
  tomlrb
53
- morpher (0.2.6)
60
+ mprelude (0.1.0)
54
61
  abstract_type (~> 0.0.7)
55
62
  adamantium (~> 0.2.0)
56
- anima (~> 0.3.0)
57
- ast (~> 2.2)
58
63
  concord (~> 0.1.5)
59
64
  equalizer (~> 0.0.9)
60
- ice_nine (~> 0.11.0)
65
+ ice_nine (~> 0.11.1)
61
66
  procto (~> 0.0.2)
62
- mutant (0.8.24)
67
+ mutant (0.9.6)
63
68
  abstract_type (~> 0.0.7)
64
69
  adamantium (~> 0.2.0)
65
- anima (~> 0.3.0)
70
+ anima (~> 0.3.1)
66
71
  ast (~> 2.2)
67
72
  concord (~> 0.1.5)
68
73
  diff-lcs (~> 1.3)
69
74
  equalizer (~> 0.0.9)
70
75
  ice_nine (~> 0.11.1)
71
76
  memoizable (~> 0.4.2)
72
- morpher (~> 0.2.6)
73
- parser (~> 2.5.1)
77
+ mprelude (~> 0.1.0)
78
+ parser (~> 2.7.0.2)
74
79
  procto (~> 0.0.2)
75
- regexp_parser (~> 1.2)
76
- unparser (~> 0.4.2)
77
- mutant-rspec (0.8.24)
78
- mutant (~> 0.8.24)
79
- rspec-core (>= 3.4.0, < 4.0.0)
80
- nokogiri (1.10.4)
80
+ unparser (~> 0.4.6)
81
+ variable (~> 0.0.1)
82
+ mutant-rspec (0.9.5)
83
+ mutant (~> 0.9.5)
84
+ rspec-core (>= 3.8.0, < 4.0.0)
85
+ nokogiri (1.10.9)
81
86
  mini_portile2 (~> 2.4.0)
82
- parser (2.5.3.0)
87
+ parser (2.7.0.5)
83
88
  ast (~> 2.4.0)
84
89
  procto (0.0.3)
85
- public_suffix (3.1.1)
86
- rake (12.3.3)
87
- regexp_parser (1.6.0)
88
- rspec (3.8.0)
89
- rspec-core (~> 3.8.0)
90
- rspec-expectations (~> 3.8.0)
91
- rspec-mocks (~> 3.8.0)
92
- rspec-core (3.8.2)
93
- rspec-support (~> 3.8.0)
94
- rspec-expectations (3.8.4)
90
+ public_suffix (4.0.5)
91
+ rake (13.0.1)
92
+ rexml (3.2.4)
93
+ rspec (3.9.0)
94
+ rspec-core (~> 3.9.0)
95
+ rspec-expectations (~> 3.9.0)
96
+ rspec-mocks (~> 3.9.0)
97
+ rspec-core (3.9.2)
98
+ rspec-support (~> 3.9.3)
99
+ rspec-expectations (3.9.2)
95
100
  diff-lcs (>= 1.2.0, < 2.0)
96
- rspec-support (~> 3.8.0)
101
+ rspec-support (~> 3.9.0)
97
102
  rspec-its (1.3.0)
98
103
  rspec-core (>= 3.0.0)
99
104
  rspec-expectations (>= 3.0.0)
100
- rspec-mocks (3.8.1)
105
+ rspec-mocks (3.9.1)
101
106
  diff-lcs (>= 1.2.0, < 2.0)
102
- rspec-support (~> 3.8.0)
103
- rspec-support (3.8.2)
107
+ rspec-support (~> 3.9.0)
108
+ rspec-support (3.9.3)
104
109
  safe_yaml (1.0.5)
105
- simplecov (0.17.0)
110
+ simplecov (0.18.5)
106
111
  docile (~> 1.1)
107
- json (>= 1.8, < 3)
108
- simplecov-html (~> 0.10.0)
109
- simplecov-html (0.10.2)
112
+ simplecov-html (~> 0.11)
113
+ simplecov-html (0.12.2)
114
+ thor (1.0.1)
110
115
  thread_safe (0.3.6)
111
- tomlrb (1.2.8)
112
- tzinfo (1.2.5)
116
+ tomlrb (1.3.0)
117
+ tzinfo (1.2.7)
113
118
  thread_safe (~> 0.1)
114
- unparser (0.4.2)
119
+ unparser (0.4.7)
115
120
  abstract_type (~> 0.0.7)
116
121
  adamantium (~> 0.2.0)
117
122
  concord (~> 0.1.5)
118
123
  diff-lcs (~> 1.3)
119
124
  equalizer (~> 0.0.9)
120
- parser (>= 2.3.1.2, < 2.6)
125
+ parser (>= 2.6.5)
121
126
  procto (~> 0.0.2)
122
- vcr (5.0.0)
123
- webmock (3.6.2)
127
+ variable (0.0.1)
128
+ equalizer (~> 0.0.11)
129
+ vcr (6.0.0)
130
+ webmock (3.8.3)
124
131
  addressable (>= 2.3.6)
125
132
  crack (>= 0.3.2)
126
133
  hashdiff (>= 0.4.0, < 2.0.0)
127
- zeitwerk (2.1.9)
134
+ zeitwerk (2.3.0)
128
135
 
129
136
  PLATFORMS
130
137
  ruby
131
138
 
132
139
  DEPENDENCIES
140
+ appraisal
133
141
  bundler
134
142
  eve_online!
135
143
  mdl
@@ -144,4 +152,4 @@ DEPENDENCIES
144
152
  webmock
145
153
 
146
154
  BUNDLED WITH
147
- 2.0.2
155
+ 2.1.4