eve_online 0.41.0 → 0.42.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65d576fbc17478176c4263d33598813505b783b6e796885b43f5024e32463950
4
- data.tar.gz: f6aa4d023bcd8a2a2b08a0c975d192f06360b0d56d0e4fbff03d2f4cfac67a6f
3
+ metadata.gz: 60bd583062e98adec0707cea8b59e9519154835218988564507df4eff9180326
4
+ data.tar.gz: c07a59b88410669e9334f72296393ab15bac9bb3886a2fb4948dbf2de01e636d
5
5
  SHA512:
6
- metadata.gz: 1d2f7a4fe87043d80116ece05d4db4e45f56045e80f722d375a006e78aaee80c19ee5807336cc3b452e0841169c9dd78ef82a7f0aff05c6cc9f26f460c5a3926
7
- data.tar.gz: 91fb7f5dc523c480e68924dbc49b38a28926742dde3947e281d3cf7ed75e5f93864931d57af5b45e155be5204de98e2c3162da7b4c7134c6e6d871fb9bae6bab
6
+ metadata.gz: b52154b2ac16192fb91c5e41d213db27f60efefd52749779b53a2b6d9475c4c8312b4bd222c5392615d04806e754f450708f3e198aba889336aff791de73abbe
7
+ data.tar.gz: 236bacacdaa564893e74ca7299de5ab3d19bfee3ee445e0461331ba5c35240893d73d2ceff993472bdf22c21000d51317d774834b8429699ec752abb49ef3fff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.42.0
4
+
5
+ * Sync with new ESI
6
+ * Remove `EveOnline::ESI::Models::Character#ancestry_id`
7
+ * Remove `ancestry_id` from `EveOnline::ESI::Models::Character#as_json`
8
+ * Remove `EveOnline::ESI::Character#ancestry_id`
9
+
3
10
  ## v0.41.0
4
11
 
5
12
  * Add `EveOnline::ESI::Search`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eve_online (0.41.0)
4
+ eve_online (0.42.0)
5
5
  activesupport (>= 5.2.0)
6
6
  faraday
7
7
  faraday_middleware
@@ -23,7 +23,7 @@ GEM
23
23
  thor (>= 0.14.0)
24
24
  ast (2.4.2)
25
25
  awesome_print (1.9.2)
26
- chef-utils (17.4.25)
26
+ chef-utils (17.4.38)
27
27
  concurrent-ruby
28
28
  coderay (1.1.3)
29
29
  colorize (0.8.1)
@@ -111,7 +111,7 @@ GEM
111
111
  diff-lcs (>= 1.2.0, < 2.0)
112
112
  rspec-support (~> 3.10.0)
113
113
  rspec-support (3.10.2)
114
- rubocop (1.19.1)
114
+ rubocop (1.20.0)
115
115
  parallel (~> 1.10)
116
116
  parser (>= 3.0.0.0)
117
117
  rainbow (>= 2.2.2, < 4.0)
@@ -136,8 +136,8 @@ GEM
136
136
  simplecov_json_formatter (~> 0.1)
137
137
  simplecov-html (0.12.3)
138
138
  simplecov_json_formatter (0.1.3)
139
- standard (1.2.0)
140
- rubocop (= 1.19.1)
139
+ standard (1.3.0)
140
+ rubocop (= 1.20.0)
141
141
  rubocop-performance (= 1.11.5)
142
142
  thor (1.1.0)
143
143
  tomlrb (2.0.1)
@@ -7,7 +7,7 @@ module EveOnline
7
7
  class Character < Base
8
8
  extend Forwardable
9
9
 
10
- API_PATH = "/v4/characters/%<character_id>s/"
10
+ API_PATH = "/v5/characters/%<character_id>s/"
11
11
 
12
12
  attr_reader :character_id
13
13
 
@@ -17,9 +17,9 @@ module EveOnline
17
17
  @character_id = options.fetch(:character_id)
18
18
  end
19
19
 
20
- def_delegators :model, :as_json, :alliance_id, :ancestry_id, :birthday,
21
- :bloodline_id, :corporation_id, :description, :faction_id, :gender,
22
- :name, :race_id, :security_status, :title
20
+ def_delegators :model, :as_json, :alliance_id, :birthday, :bloodline_id,
21
+ :corporation_id, :description, :faction_id, :gender, :name, :race_id,
22
+ :security_status, :title
23
23
 
24
24
  def model
25
25
  @model ||= Models::Character.new(response)
@@ -7,7 +7,6 @@ module EveOnline
7
7
  def as_json
8
8
  {
9
9
  alliance_id: alliance_id,
10
- ancestry_id: ancestry_id,
11
10
  birthday: birthday,
12
11
  bloodline_id: bloodline_id,
13
12
  corporation_id: corporation_id,
@@ -25,10 +24,6 @@ module EveOnline
25
24
  options["alliance_id"]
26
25
  end
27
26
 
28
- def ancestry_id
29
- options["ancestry_id"]
30
- end
31
-
32
27
  def birthday
33
28
  birthday = options["birthday"]
34
29
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EveOnline
4
- VERSION = "0.41.0"
4
+ VERSION = Gem::Version.new("0.42.0")
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eve_online
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Zubkov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-27 00:00:00.000000000 Z
11
+ date: 2021-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler