eve_online 0.30.0 → 0.35.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +18 -54
  3. data/.deepsource.toml +5 -0
  4. data/.ruby-version +1 -1
  5. data/Appraisals +0 -12
  6. data/CHANGELOG.md +58 -0
  7. data/Gemfile.lock +57 -53
  8. data/Gemfile.mutant.lock +49 -50
  9. data/README.md +401 -133
  10. data/eve_online.gemspec +3 -3
  11. data/lib/eve_online.rb +40 -7
  12. data/lib/eve_online/esi/alliance_corporations.rb +1 -1
  13. data/lib/eve_online/esi/alliances.rb +1 -1
  14. data/lib/eve_online/esi/base.rb +15 -6
  15. data/lib/eve_online/esi/character_assets.rb +1 -1
  16. data/lib/eve_online/esi/character_calendar.rb +1 -1
  17. data/lib/eve_online/esi/character_calendar_event.rb +1 -1
  18. data/lib/eve_online/esi/{character_bookmarks.rb → character_contracts.rb} +7 -7
  19. data/lib/eve_online/esi/character_get_mail.rb +37 -0
  20. data/lib/eve_online/esi/character_location.rb +1 -1
  21. data/lib/eve_online/esi/character_mail_labels.rb +40 -0
  22. data/lib/eve_online/esi/character_online.rb +1 -1
  23. data/lib/eve_online/esi/character_ship.rb +1 -1
  24. data/lib/eve_online/esi/character_skills.rb +1 -1
  25. data/lib/eve_online/esi/character_wallet.rb +1 -1
  26. data/lib/eve_online/esi/character_wallet_journal.rb +2 -2
  27. data/lib/eve_online/esi/character_wallet_transactions.rb +41 -0
  28. data/lib/eve_online/esi/corporation_assets.rb +1 -1
  29. data/lib/eve_online/esi/corporation_npc.rb +20 -0
  30. data/lib/eve_online/esi/killmail.rb +30 -0
  31. data/lib/eve_online/esi/market_prices.rb +27 -0
  32. data/lib/eve_online/esi/models/aggressor.rb +1 -1
  33. data/lib/eve_online/esi/models/alliance.rb +1 -1
  34. data/lib/eve_online/esi/models/alliance_icon.rb +1 -1
  35. data/lib/eve_online/esi/models/alliance_short.rb +1 -1
  36. data/lib/eve_online/esi/models/ally.rb +1 -1
  37. data/lib/eve_online/esi/models/ancestry.rb +1 -1
  38. data/lib/eve_online/esi/models/asset.rb +1 -1
  39. data/lib/eve_online/esi/models/asset_location.rb +1 -1
  40. data/lib/eve_online/esi/models/asset_name.rb +1 -1
  41. data/lib/eve_online/esi/models/asteroid_belt.rb +1 -1
  42. data/lib/eve_online/esi/models/attributes.rb +1 -1
  43. data/lib/eve_online/esi/models/bloodline.rb +1 -1
  44. data/lib/eve_online/esi/models/blueprint.rb +1 -1
  45. data/lib/eve_online/esi/models/category.rb +1 -1
  46. data/lib/eve_online/esi/models/character.rb +1 -1
  47. data/lib/eve_online/esi/models/character_corporation_history.rb +1 -1
  48. data/lib/eve_online/esi/models/character_industry_job.rb +1 -1
  49. data/lib/eve_online/esi/models/character_location.rb +1 -1
  50. data/lib/eve_online/esi/models/character_order.rb +1 -1
  51. data/lib/eve_online/esi/models/character_portrait.rb +1 -1
  52. data/lib/eve_online/esi/models/character_ship.rb +1 -1
  53. data/lib/eve_online/esi/models/constellation.rb +1 -1
  54. data/lib/eve_online/esi/models/contract.rb +132 -0
  55. data/lib/eve_online/esi/models/coordinates.rb +1 -1
  56. data/lib/eve_online/esi/models/corporation.rb +1 -1
  57. data/lib/eve_online/esi/models/corporation_alliance_history.rb +1 -1
  58. data/lib/eve_online/esi/models/corporation_industry_job.rb +1 -1
  59. data/lib/eve_online/esi/models/corporation_order.rb +1 -1
  60. data/lib/eve_online/esi/models/defender.rb +1 -1
  61. data/lib/eve_online/esi/models/dogma_attribute.rb +1 -1
  62. data/lib/eve_online/esi/models/dogma_attribute_short.rb +1 -1
  63. data/lib/eve_online/esi/models/dogma_effect.rb +1 -1
  64. data/lib/eve_online/esi/models/dogma_effect_modifier.rb +1 -1
  65. data/lib/eve_online/esi/models/dogma_effect_short.rb +1 -1
  66. data/lib/eve_online/esi/models/event.rb +1 -1
  67. data/lib/eve_online/esi/models/event_details.rb +1 -1
  68. data/lib/eve_online/esi/models/faction.rb +1 -1
  69. data/lib/eve_online/esi/models/fatigue.rb +1 -1
  70. data/lib/eve_online/esi/models/graphic.rb +1 -1
  71. data/lib/eve_online/esi/models/group.rb +1 -1
  72. data/lib/eve_online/esi/models/home_location.rb +1 -1
  73. data/lib/eve_online/esi/models/jump_clone.rb +1 -1
  74. data/lib/eve_online/esi/models/killmail.rb +47 -0
  75. data/lib/eve_online/esi/models/killmail_short.rb +1 -1
  76. data/lib/eve_online/esi/models/loyalty_point.rb +1 -1
  77. data/lib/eve_online/esi/models/loyalty_store_offer.rb +1 -1
  78. data/lib/eve_online/esi/models/mail.rb +49 -0
  79. data/lib/eve_online/esi/models/mail_label.rb +34 -0
  80. data/lib/eve_online/esi/models/mail_recipient.rb +24 -0
  81. data/lib/eve_online/esi/models/mail_recipients.rb +21 -0
  82. data/lib/eve_online/esi/models/market_group.rb +1 -1
  83. data/lib/eve_online/esi/models/market_history.rb +1 -1
  84. data/lib/eve_online/esi/models/market_price.rb +29 -0
  85. data/lib/eve_online/esi/models/moon.rb +1 -1
  86. data/lib/eve_online/esi/models/notification.rb +1 -1
  87. data/lib/eve_online/esi/models/offer_required_item.rb +1 -1
  88. data/lib/eve_online/esi/models/online.rb +1 -1
  89. data/lib/eve_online/esi/models/planet.rb +1 -1
  90. data/lib/eve_online/esi/models/planet_short.rb +1 -1
  91. data/lib/eve_online/esi/models/position.rb +1 -1
  92. data/lib/eve_online/esi/models/public_contract.rb +98 -0
  93. data/lib/eve_online/esi/models/public_contract_item.rb +59 -0
  94. data/lib/eve_online/esi/models/race.rb +3 -3
  95. data/lib/eve_online/esi/models/region.rb +5 -6
  96. data/lib/eve_online/esi/models/server_status.rb +1 -1
  97. data/lib/eve_online/esi/models/skill.rb +1 -1
  98. data/lib/eve_online/esi/models/skill_queue_entry.rb +1 -1
  99. data/lib/eve_online/esi/models/standing.rb +1 -1
  100. data/lib/eve_online/esi/models/star.rb +1 -1
  101. data/lib/eve_online/esi/models/stargate.rb +8 -2
  102. data/lib/eve_online/esi/models/station.rb +1 -1
  103. data/lib/eve_online/esi/models/system.rb +1 -1
  104. data/lib/eve_online/esi/models/system_jump.rb +1 -1
  105. data/lib/eve_online/esi/models/system_kill.rb +1 -1
  106. data/lib/eve_online/esi/models/type.rb +1 -1
  107. data/lib/eve_online/esi/models/{wallet_journal_entry.rb → wallet_journal.rb} +4 -4
  108. data/lib/eve_online/esi/models/wallet_transaction.rb +66 -0
  109. data/lib/eve_online/esi/models/war.rb +1 -1
  110. data/lib/eve_online/esi/public_contract.rb +40 -0
  111. data/lib/eve_online/esi/public_contracts.rb +40 -0
  112. data/lib/eve_online/esi/universe_region.rb +2 -2
  113. data/lib/eve_online/esi/universe_stargate.rb +1 -1
  114. data/lib/eve_online/exceptions/error_limited.rb +8 -0
  115. data/lib/eve_online/formulas/blueprint_copy_time.rb +47 -0
  116. data/lib/eve_online/version.rb +1 -1
  117. metadata +32 -15
  118. data/lib/eve_online/esi/character_bookmark_folders.rb +0 -41
  119. data/lib/eve_online/esi/models/bookmark.rb +0 -71
  120. data/lib/eve_online/esi/models/bookmark_folder.rb +0 -24
  121. 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: de82cd73917218128ac8164bd2683ec4e4341fac3f1401dff6149f26d96170dc
4
- data.tar.gz: b1c3295d103a573a5a4bab30b362fb7c4840788172ac08d8935aa124bbdd415f
3
+ metadata.gz: 5b14b54b7da3429b1bd0c1b6e975195aaba4d24e0272a5c38d4e7a9aa5b0de42
4
+ data.tar.gz: 5c39f9345325b3bf9a9764ffbe49704b96fc43c1325e9a06e2ffbadbcd8f9fa6
5
5
  SHA512:
6
- metadata.gz: 14930a20834a63f15951e2626f55a04ff331d9e79801b0c5ebf0ab23b190c8f155b5340ea270961d2dc04c7c3a6f4bf8446c7485419d105344f9f5813582df66
7
- data.tar.gz: 2261d31b7402ab499ffbe9f744673536afadf185795f0376e464e456e950bf33dbf2caaaca34e1a62f189ad52e63b6dd33cd0f1b3a61136fc2f491e8935e71d7
6
+ metadata.gz: e8c723bba7c7f720c5a8f7f78c9f3f6a02ac2559d3ac58fa0f5a89bcafaf7c111edd23ade1c51fe01b8b5bd53e40a31315902a6f35ee7940113691d81c4624b5
7
+ data.tar.gz: 34376fdfe262ab51ab60550e725a19fbe1eb4458db64f91e3660ccc76f4cd39aa391b46ac002fda5923cc65751ea1750a2a53e71075cca13d2555da03bea14af
@@ -1,89 +1,54 @@
1
1
  version: 2
2
2
 
3
3
  jobs:
4
- ruby-2.4.9:
4
+ ruby-2.5.8:
5
5
  docker:
6
- - image: circleci/ruby:2.4.9
6
+ - image: circleci/ruby:2.5.8
7
7
  steps:
8
8
  - checkout
9
9
  - run: rm Gemfile.lock
10
10
  - run: rm .ruby-version
11
- - run: gem install bundler
12
11
  - run: bundle install
13
12
  - run: bundle exec appraisal install || true
14
- - run: bundle exec appraisal activesupport_42 rake
15
- - run: bundle exec appraisal activesupport_50 rake
16
- - run: bundle exec appraisal activesupport_51 rake
17
- - run: bundle exec appraisal activesupport_52 rake
13
+ - run: bundle exec appraisal rake
18
14
  - run: bundle exec standardrb
19
15
  - run: bundle exec mdl README.md CHANGELOG.md TODO.md
20
- ruby-2.5.7:
16
+ ruby-2.6.6:
21
17
  docker:
22
- - image: circleci/ruby:2.5.7
18
+ - image: circleci/ruby:2.6.6
23
19
  steps:
24
20
  - checkout
25
21
  - run: rm Gemfile.lock
26
22
  - run: rm .ruby-version
27
- - run: gem install bundler
28
23
  - run: bundle install
29
24
  - run: bundle exec appraisal install || true
30
- - run: bundle exec appraisal activesupport_50 rake
31
- - run: bundle exec appraisal activesupport_51 rake
32
- - run: bundle exec appraisal activesupport_52 rake
33
- - run: bundle exec appraisal activesupport_60 rake
34
- - run: bundle exec appraisal activesupport_edge rake
25
+ - run: bundle exec appraisal rake
35
26
  - run: bundle exec standardrb
36
27
  - run: bundle exec mdl README.md CHANGELOG.md TODO.md
37
- ruby-2.6.5:
28
+ ruby-2.7.1:
38
29
  docker:
39
- - image: circleci/ruby:2.6.5
30
+ - image: circleci/ruby:2.7.1
40
31
  steps:
41
32
  - checkout
42
33
  - run: rm Gemfile.lock
43
34
  - run: rm .ruby-version
44
- - run: gem install bundler
45
35
  - run: bundle install
46
36
  - run: bundle exec appraisal install || true
47
- - run: bundle exec appraisal activesupport_50 rake
48
- - run: bundle exec appraisal activesupport_51 rake
49
- - run: bundle exec appraisal activesupport_52 rake
50
- - run: bundle exec appraisal activesupport_60 rake
51
- - run: bundle exec appraisal activesupport_edge rake
37
+ - run: bundle exec appraisal rake
52
38
  - run: bundle exec standardrb
53
39
  - run: bundle exec mdl README.md CHANGELOG.md TODO.md
54
- ruby-2.7.0-preview1:
40
+ jruby-9.2.11.1:
55
41
  docker:
56
- - image: circleci/ruby:2.7.0-preview1
42
+ - image: circleci/jruby:9.2.11.1
43
+ environment:
44
+ JRUBY_OPTS: "--debug -J-Xmn1024m -J-Xms2048m -J-Xmx2048m"
57
45
  steps:
58
46
  - checkout
59
47
  - run: rm Gemfile.lock
60
48
  - run: rm .ruby-version
61
- - run: gem install bundler
62
49
  - run: bundle install
63
50
  - run: bundle exec appraisal install || true
64
- - run: bundle exec appraisal activesupport_50 rake
65
- - run: bundle exec appraisal activesupport_51 rake
66
- - run: bundle exec appraisal activesupport_52 rake
67
- - run: bundle exec appraisal activesupport_60 rake
68
- - run: bundle exec appraisal activesupport_edge rake
69
- - run: bundle exec standardrb
70
- - run: bundle exec mdl README.md CHANGELOG.md TODO.md
71
- jruby-9.2.9.0:
72
- docker:
73
- - image: circleci/jruby:9.2.9.0
74
- steps:
75
- - checkout
76
- - run: rm Gemfile.lock
77
- - run: rm .ruby-version
78
- - run: gem install bundler
79
- - run: bundle install
80
- - run: bundle exec appraisal install || true
81
- - run: bundle exec appraisal activesupport_42 rake JRUBY_OPTS="--debug"
82
- - run: bundle exec appraisal activesupport_50 rake JRUBY_OPTS="--debug"
83
- - run: bundle exec appraisal activesupport_51 rake JRUBY_OPTS="--debug"
84
- - run: bundle exec appraisal activesupport_52 rake JRUBY_OPTS="--debug"
85
- - run: bundle exec appraisal activesupport_60 rake JRUBY_OPTS="--debug"
86
- - run: bundle exec appraisal activesupport_edge rake JRUBY_OPTS="--debug"
51
+ - run: bundle exec appraisal rake
87
52
  - run: bundle exec standardrb
88
53
  - run: bundle exec mdl README.md CHANGELOG.md TODO.md
89
54
 
@@ -91,8 +56,7 @@ workflows:
91
56
  version: 2
92
57
  tests:
93
58
  jobs:
94
- - jruby-9.2.9.0
95
- - ruby-2.4.9
96
- - ruby-2.5.7
97
- - ruby-2.6.5
98
- - ruby-2.7.0-preview1
59
+ - jruby-9.2.11.1
60
+ - ruby-2.5.8
61
+ - ruby-2.6.6
62
+ - ruby-2.7.1
@@ -0,0 +1,5 @@
1
+ version = 1
2
+
3
+ [[analyzers]]
4
+ name = "ruby"
5
+ enabled = true
@@ -1 +1 @@
1
- 2.6.5
1
+ 2.7.1
data/Appraisals CHANGED
@@ -1,15 +1,3 @@
1
- appraise "activesupport_42" do
2
- gem "activesupport", "~> 4.2.0"
3
- end
4
-
5
- appraise "activesupport_50" do
6
- gem "activesupport", "~> 5.0.0"
7
- end
8
-
9
- appraise "activesupport_51" do
10
- gem "activesupport", "~> 5.1.0"
11
- end
12
-
13
1
  appraise "activesupport_52" do
14
2
  gem "activesupport", "~> 5.2.0"
15
3
  end
@@ -1,5 +1,63 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.35.0
4
+
5
+ * Add `EveOnline::ESI::PublicContracts`
6
+ * Add `EveOnline::ESI::Models::PublicContract`
7
+ * Add `EveOnline::ESI::Models::PublicContractItem`
8
+ * Add `EveOnline::ESI::PublicContract`
9
+
10
+ ## v0.34.0
11
+
12
+ * Rename `EveOnline::ESI::Models::Race#alliance_id` to `#faction_id`. [Fix esi issue 812](https://github.com/esi/esi-issues/issues/812).
13
+
14
+ ## v0.33.0
15
+
16
+ * Sync with new ESI API
17
+ * Add `EveOnline::Exceptions::ErrorLimited`
18
+
19
+ ## v0.32.0
20
+
21
+ * Sync with new ESI API
22
+ * Add `EveOnline::ESI::CharacterContracts`
23
+ * Add `EveOnline::ESI::Models::Contract`
24
+ * Add support `X-ESI-Error-Limit-Remain` header
25
+ * Add support `X-ESI-Error-Limit-Reset` header
26
+ * Add `EveOnline::ESI::Killmail`
27
+ * Add `EveOnline::ESI::MarketPrices`
28
+ * Add `EveOnline::ESI::Models::MarketPrice`
29
+ * Add `EveOnline::ESI::Models::WalletTransaction`
30
+ * Add `EveOnline::ESI::CharacterWalletTransactions`
31
+ * Rename `EveOnline::ESI::Models::WalletJournalEntry` to `EveOnline::ESI::Models::WalletJournal`
32
+ * Add `EveOnline::ESI::Models::Killmail`
33
+ * Rename `EveOnline::ESI::Models::WalletJournal#id` to `#wallet_journal_id` and update `#as_json`
34
+ * Add `EveOnline::Formulas::BlueprintCopyTime`
35
+ * Drop `EveOnline::ESI::CharacterBookmarkFolders`
36
+ * Drop `EveOnline::ESI::CharacterBookmarks`
37
+ * Drop `EveOnline::ESI::Models::Bookmark`
38
+ * Drop `EveOnline::ESI::Models::BookmarkFolder`
39
+ * Add `EveOnline::ESI::CorporationNPC`
40
+
41
+ ## v0.31.0
42
+
43
+ * Add `EveOnline::ESI::Models::MailRecipient`
44
+ * Add `EveOnline::ESI::Models::MailRecipients`
45
+ * Add `EveOnline::ESI::Models::Mail`
46
+ * Add `EveOnline::ESI::CharacterGetMail`
47
+ * Add `EveOnline::ESI::Models::MailLabel`
48
+ * Add `EveOnline::ESI::CharacterMailLabels`
49
+ * Ruby 2.7.0
50
+ * Rename `EveOnline::ESI::UniverseRegion#constellations` to `#constellation_ids`
51
+ * Remove `constellations` from `EveOnline::ESI::UniverseRegion#as_json`
52
+ * Add `EveOnline::ESI::Models::Stargate#destination_stargate_id`
53
+ * Add `EveOnline::ESI::Models::Stargate#destination_system_id`
54
+ * Add `destination_stargate_id` and `destination_system_id` to `EveOnline::ESI::Models::Stargate#as_json`
55
+ * Remove `EveOnline::ESI::Models::StargateDestination`
56
+ * Remove `EveOnline::ESI::UniverseStargate#destination`
57
+ * Add `EveOnline::ESI::UniverseStargate#destination_stargate_id`
58
+ * Add `EveOnline::ESI::UniverseStargate#destination_system_id`
59
+ * Drop datasource support
60
+
3
61
  ## v0.30.0
4
62
 
5
63
  * Add `EveOnline::ESI::Models::OfferRequiredItem`
@@ -1,116 +1,120 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eve_online (0.30.0)
5
- activesupport (>= 4.2.0)
4
+ eve_online (0.35.0)
5
+ activesupport (>= 5.2.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (6.0.1)
10
+ activesupport (6.0.3.2)
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.2)
15
+ zeitwerk (~> 2.2, >= 2.2.2)
16
16
  addressable (2.7.0)
17
17
  public_suffix (>= 2.0.2, < 5.0)
18
- appraisal (2.2.0)
18
+ appraisal (2.3.0)
19
19
  bundler
20
20
  rake
21
21
  thor (>= 0.14.0)
22
- ast (2.4.0)
22
+ ast (2.4.1)
23
23
  awesome_print (1.8.0)
24
- coderay (1.1.2)
24
+ coderay (1.1.3)
25
25
  colorize (0.8.1)
26
- concurrent-ruby (1.1.5)
26
+ concurrent-ruby (1.1.6)
27
27
  crack (0.4.3)
28
28
  safe_yaml (~> 1.0.0)
29
29
  diff-lcs (1.3)
30
30
  docile (1.3.2)
31
- fasterer (0.8.1)
31
+ fasterer (0.8.3)
32
32
  colorize (~> 0.7)
33
33
  ruby_parser (>= 3.14.1)
34
- hashdiff (1.0.0)
35
- i18n (1.7.0)
34
+ hashdiff (1.0.1)
35
+ i18n (1.8.3)
36
36
  concurrent-ruby (~> 1.0)
37
- jaro_winkler (1.5.4)
38
- json (2.2.0)
39
- kramdown (2.1.0)
37
+ kramdown (2.2.1)
38
+ rexml
40
39
  kramdown-parser-gfm (1.1.0)
41
40
  kramdown (~> 2.0)
42
- mdl (0.8.0)
41
+ mdl (0.9.0)
43
42
  kramdown (~> 2.0)
44
43
  kramdown-parser-gfm (~> 1.0)
45
44
  mixlib-cli (~> 2.1, >= 2.1.1)
46
45
  mixlib-config (>= 2.2.1, < 4)
47
- method_source (0.9.2)
46
+ method_source (1.0.0)
48
47
  mini_portile2 (2.4.0)
49
- minitest (5.13.0)
50
- mixlib-cli (2.1.1)
51
- mixlib-config (3.0.5)
48
+ minitest (5.14.1)
49
+ mixlib-cli (2.1.6)
50
+ mixlib-config (3.0.6)
52
51
  tomlrb
53
- nokogiri (1.10.7)
52
+ nokogiri (1.10.9)
54
53
  mini_portile2 (~> 2.4.0)
55
- parallel (1.19.1)
56
- parser (2.6.5.0)
54
+ parallel (1.19.2)
55
+ parser (2.7.1.3)
57
56
  ast (~> 2.4.0)
58
- pry (0.12.2)
59
- coderay (~> 1.1.0)
60
- method_source (~> 0.9.0)
61
- public_suffix (4.0.1)
57
+ pry (0.13.1)
58
+ coderay (~> 1.1)
59
+ method_source (~> 1.0)
60
+ public_suffix (4.0.5)
62
61
  rainbow (3.0.0)
63
62
  rake (13.0.1)
63
+ regexp_parser (1.7.1)
64
+ rexml (3.2.4)
64
65
  rspec (3.9.0)
65
66
  rspec-core (~> 3.9.0)
66
67
  rspec-expectations (~> 3.9.0)
67
68
  rspec-mocks (~> 3.9.0)
68
- rspec-core (3.9.0)
69
- rspec-support (~> 3.9.0)
70
- rspec-expectations (3.9.0)
69
+ rspec-core (3.9.2)
70
+ rspec-support (~> 3.9.3)
71
+ rspec-expectations (3.9.2)
71
72
  diff-lcs (>= 1.2.0, < 2.0)
72
73
  rspec-support (~> 3.9.0)
73
74
  rspec-its (1.3.0)
74
75
  rspec-core (>= 3.0.0)
75
76
  rspec-expectations (>= 3.0.0)
76
- rspec-mocks (3.9.0)
77
+ rspec-mocks (3.9.1)
77
78
  diff-lcs (>= 1.2.0, < 2.0)
78
79
  rspec-support (~> 3.9.0)
79
- rspec-support (3.9.0)
80
- rubocop (0.75.1)
81
- jaro_winkler (~> 1.5.1)
80
+ rspec-support (3.9.3)
81
+ rubocop (0.85.1)
82
82
  parallel (~> 1.10)
83
- parser (>= 2.6)
83
+ parser (>= 2.7.0.1)
84
84
  rainbow (>= 2.2.2, < 4.0)
85
+ regexp_parser (>= 1.7)
86
+ rexml
87
+ rubocop-ast (>= 0.0.3)
85
88
  ruby-progressbar (~> 1.7)
86
- unicode-display_width (>= 1.4.0, < 1.7)
87
- rubocop-performance (1.5.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)
88
93
  rubocop (>= 0.71.0)
89
94
  ruby-progressbar (1.10.1)
90
- ruby_parser (3.14.1)
95
+ ruby_parser (3.14.2)
91
96
  sexp_processor (~> 4.9)
92
97
  safe_yaml (1.0.5)
93
- sexp_processor (4.13.0)
94
- simplecov (0.17.1)
98
+ sexp_processor (4.15.0)
99
+ simplecov (0.18.5)
95
100
  docile (~> 1.1)
96
- json (>= 1.8, < 3)
97
- simplecov-html (~> 0.10.0)
98
- simplecov-html (0.10.2)
99
- standard (0.1.6)
100
- rubocop (~> 0.75.0)
101
- rubocop-performance (~> 1.5.0)
102
- thor (0.20.3)
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)
103
107
  thread_safe (0.3.6)
104
- tomlrb (1.2.9)
105
- tzinfo (1.2.5)
108
+ tomlrb (1.3.0)
109
+ tzinfo (1.2.7)
106
110
  thread_safe (~> 0.1)
107
- unicode-display_width (1.6.0)
108
- vcr (5.0.0)
109
- webmock (3.7.6)
111
+ unicode-display_width (1.7.0)
112
+ vcr (6.0.0)
113
+ webmock (3.8.3)
110
114
  addressable (>= 2.3.6)
111
115
  crack (>= 0.3.2)
112
116
  hashdiff (>= 0.4.0, < 2.0.0)
113
- zeitwerk (2.2.2)
117
+ zeitwerk (2.3.0)
114
118
 
115
119
  PLATFORMS
116
120
  ruby
@@ -133,4 +137,4 @@ DEPENDENCIES
133
137
  webmock
134
138
 
135
139
  BUNDLED WITH
136
- 2.1.0.pre.3
140
+ 2.1.4
@@ -1,19 +1,19 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eve_online (0.30.0)
5
- activesupport (>= 4.2.0)
4
+ eve_online (0.35.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.1)
11
+ activesupport (6.0.3.2)
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.2)
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)
@@ -23,29 +23,29 @@ GEM
23
23
  abstract_type (~> 0.0.7)
24
24
  adamantium (~> 0.2)
25
25
  equalizer (~> 0.0.11)
26
- appraisal (2.2.0)
26
+ appraisal (2.3.0)
27
27
  bundler
28
28
  rake
29
29
  thor (>= 0.14.0)
30
- ast (2.4.0)
30
+ ast (2.4.1)
31
31
  concord (0.1.5)
32
32
  adamantium (~> 0.2.0)
33
33
  equalizer (~> 0.0.9)
34
- concurrent-ruby (1.1.5)
34
+ concurrent-ruby (1.1.6)
35
35
  crack (0.4.3)
36
36
  safe_yaml (~> 1.0.0)
37
37
  diff-lcs (1.3)
38
38
  docile (1.3.2)
39
39
  equalizer (0.0.11)
40
- hashdiff (1.0.0)
41
- i18n (1.7.0)
40
+ hashdiff (1.0.1)
41
+ i18n (1.8.3)
42
42
  concurrent-ruby (~> 1.0)
43
43
  ice_nine (0.11.2)
44
- json (2.2.0)
45
- kramdown (2.1.0)
44
+ kramdown (2.2.1)
45
+ rexml
46
46
  kramdown-parser-gfm (1.1.0)
47
47
  kramdown (~> 2.0)
48
- mdl (0.8.0)
48
+ mdl (0.9.0)
49
49
  kramdown (~> 2.0)
50
50
  kramdown-parser-gfm (~> 1.0)
51
51
  mixlib-cli (~> 2.1, >= 2.1.1)
@@ -53,86 +53,85 @@ GEM
53
53
  memoizable (0.4.2)
54
54
  thread_safe (~> 0.3, >= 0.3.1)
55
55
  mini_portile2 (2.4.0)
56
- minitest (5.13.0)
57
- mixlib-cli (2.1.1)
58
- mixlib-config (3.0.5)
56
+ minitest (5.14.1)
57
+ mixlib-cli (2.1.6)
58
+ mixlib-config (3.0.6)
59
59
  tomlrb
60
- morpher (0.2.6)
60
+ mprelude (0.1.0)
61
61
  abstract_type (~> 0.0.7)
62
62
  adamantium (~> 0.2.0)
63
- anima (~> 0.3.0)
64
- ast (~> 2.2)
65
63
  concord (~> 0.1.5)
66
64
  equalizer (~> 0.0.9)
67
- ice_nine (~> 0.11.0)
65
+ ice_nine (~> 0.11.1)
68
66
  procto (~> 0.0.2)
69
- mutant (0.8.24)
67
+ mutant (0.9.6)
70
68
  abstract_type (~> 0.0.7)
71
69
  adamantium (~> 0.2.0)
72
- anima (~> 0.3.0)
70
+ anima (~> 0.3.1)
73
71
  ast (~> 2.2)
74
72
  concord (~> 0.1.5)
75
73
  diff-lcs (~> 1.3)
76
74
  equalizer (~> 0.0.9)
77
75
  ice_nine (~> 0.11.1)
78
76
  memoizable (~> 0.4.2)
79
- morpher (~> 0.2.6)
80
- parser (~> 2.5.1)
77
+ mprelude (~> 0.1.0)
78
+ parser (~> 2.7.0.2)
81
79
  procto (~> 0.0.2)
82
- regexp_parser (~> 1.2)
83
- unparser (~> 0.4.2)
84
- mutant-rspec (0.8.24)
85
- mutant (~> 0.8.24)
86
- rspec-core (>= 3.4.0, < 4.0.0)
87
- nokogiri (1.10.7)
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)
88
86
  mini_portile2 (~> 2.4.0)
89
- parser (2.5.3.0)
87
+ parser (2.7.0.5)
90
88
  ast (~> 2.4.0)
91
89
  procto (0.0.3)
92
- public_suffix (4.0.1)
90
+ public_suffix (4.0.5)
93
91
  rake (13.0.1)
94
- regexp_parser (1.6.0)
92
+ rexml (3.2.4)
95
93
  rspec (3.9.0)
96
94
  rspec-core (~> 3.9.0)
97
95
  rspec-expectations (~> 3.9.0)
98
96
  rspec-mocks (~> 3.9.0)
99
- rspec-core (3.9.0)
100
- rspec-support (~> 3.9.0)
101
- rspec-expectations (3.9.0)
97
+ rspec-core (3.9.2)
98
+ rspec-support (~> 3.9.3)
99
+ rspec-expectations (3.9.2)
102
100
  diff-lcs (>= 1.2.0, < 2.0)
103
101
  rspec-support (~> 3.9.0)
104
102
  rspec-its (1.3.0)
105
103
  rspec-core (>= 3.0.0)
106
104
  rspec-expectations (>= 3.0.0)
107
- rspec-mocks (3.9.0)
105
+ rspec-mocks (3.9.1)
108
106
  diff-lcs (>= 1.2.0, < 2.0)
109
107
  rspec-support (~> 3.9.0)
110
- rspec-support (3.9.0)
108
+ rspec-support (3.9.3)
111
109
  safe_yaml (1.0.5)
112
- simplecov (0.17.1)
110
+ simplecov (0.18.5)
113
111
  docile (~> 1.1)
114
- json (>= 1.8, < 3)
115
- simplecov-html (~> 0.10.0)
116
- simplecov-html (0.10.2)
117
- thor (0.20.3)
112
+ simplecov-html (~> 0.11)
113
+ simplecov-html (0.12.2)
114
+ thor (1.0.1)
118
115
  thread_safe (0.3.6)
119
- tomlrb (1.2.9)
120
- tzinfo (1.2.5)
116
+ tomlrb (1.3.0)
117
+ tzinfo (1.2.7)
121
118
  thread_safe (~> 0.1)
122
- unparser (0.4.2)
119
+ unparser (0.4.7)
123
120
  abstract_type (~> 0.0.7)
124
121
  adamantium (~> 0.2.0)
125
122
  concord (~> 0.1.5)
126
123
  diff-lcs (~> 1.3)
127
124
  equalizer (~> 0.0.9)
128
- parser (>= 2.3.1.2, < 2.6)
125
+ parser (>= 2.6.5)
129
126
  procto (~> 0.0.2)
130
- vcr (5.0.0)
131
- webmock (3.7.6)
127
+ variable (0.0.1)
128
+ equalizer (~> 0.0.11)
129
+ vcr (6.0.0)
130
+ webmock (3.8.3)
132
131
  addressable (>= 2.3.6)
133
132
  crack (>= 0.3.2)
134
133
  hashdiff (>= 0.4.0, < 2.0.0)
135
- zeitwerk (2.2.2)
134
+ zeitwerk (2.3.0)
136
135
 
137
136
  PLATFORMS
138
137
  ruby
@@ -153,4 +152,4 @@ DEPENDENCIES
153
152
  webmock
154
153
 
155
154
  BUNDLED WITH
156
- 2.1.0.pre.3
155
+ 2.1.4