eve_online 0.42.0 → 0.43.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/mdl.yml +19 -0
- data/.github/workflows/rspec.yml +36 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +10 -0
- data/.ruby-version +1 -1
- data/.standard.yml +1 -1
- data/Appraisals +6 -0
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +56 -72
- data/LICENSE.txt +1 -1
- data/README.md +2 -4
- data/eve_online.gemspec +4 -6
- data/lib/eve_online/esi/base.rb +1 -0
- data/lib/eve_online/version.rb +1 -1
- metadata +8 -21
- data/.circleci/config.yml +0 -50
- data/.github/FUNDING.yml +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78796cd52c312fba97cbc11ccf2d0c83f17cdfc366fc54ffcd55ce79b1286de6
|
4
|
+
data.tar.gz: cdc290ca3951773e4b94e93c18a2586a5abdd2aeb533e76193f1f4a8fe460513
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5466b4eeb5d5d147dc876bc9aac6ea46d06a7ee658e56a5a1d0c8fc91c30bf219f2f14fcc592d1e78dcbb1ed652d8bb34c1aec8615c69900993ac2ec5ca09bc8
|
7
|
+
data.tar.gz: 4fa03e051b7633f439311c01cc5842dcd2a079f07fe5a61a4fe3afd2284e0dfd29b3319d2c072f8c423817254ec0ddab554a08118d5a7724ccec9b2c4f0b54fb
|
@@ -0,0 +1,19 @@
|
|
1
|
+
name: mdl
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- main
|
10
|
+
schedule:
|
11
|
+
- cron: "0 21 * * 6"
|
12
|
+
|
13
|
+
jobs:
|
14
|
+
mdl:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v2
|
19
|
+
- uses: actionshub/markdownlint@main
|
@@ -0,0 +1,36 @@
|
|
1
|
+
name: RSpec
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- main
|
10
|
+
schedule:
|
11
|
+
- cron: "0 21 * * 6"
|
12
|
+
|
13
|
+
jobs:
|
14
|
+
rspec:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
strategy:
|
17
|
+
fail-fast: false
|
18
|
+
matrix:
|
19
|
+
ruby:
|
20
|
+
- 2.7
|
21
|
+
- "3.0"
|
22
|
+
- 3.1
|
23
|
+
name: Ruby ${{ matrix.ruby }}
|
24
|
+
steps:
|
25
|
+
- uses: actions/checkout@v2
|
26
|
+
- run: rm Gemfile.lock
|
27
|
+
- run: rm .ruby-version
|
28
|
+
- name: Set up Ruby
|
29
|
+
uses: ruby/setup-ruby@v1
|
30
|
+
with:
|
31
|
+
ruby-version: ${{ matrix.ruby }}
|
32
|
+
- run: bundle install --jobs 4 --retry 3
|
33
|
+
- run: bundle exec appraisal install || true
|
34
|
+
- run: bundle exec appraisal rake
|
35
|
+
- run: bundle exec standardrb
|
36
|
+
- run: bundle exec fasterer
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
AllCops:
|
2
2
|
NewCops: enable
|
3
3
|
SuggestExtensions: false
|
4
|
+
TargetRubyVersion: 2.7
|
4
5
|
|
5
6
|
Style/WordArray:
|
6
7
|
Enabled: true
|
@@ -9,3 +10,12 @@ Style/WordArray:
|
|
9
10
|
Style/StringLiterals:
|
10
11
|
Enabled: true
|
11
12
|
EnforcedStyle: double_quotes
|
13
|
+
|
14
|
+
Style/Documentation:
|
15
|
+
Enabled: false
|
16
|
+
|
17
|
+
Gemspec/OrderedDependencies:
|
18
|
+
Enabled: false
|
19
|
+
|
20
|
+
Bundler/OrderedGems:
|
21
|
+
Enabled: false
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.1.2
|
data/.standard.yml
CHANGED
data/Appraisals
CHANGED
@@ -12,6 +12,12 @@ appraise "activesupport_61" do
|
|
12
12
|
gem "activesupport", "~> 6.1.0"
|
13
13
|
end
|
14
14
|
|
15
|
+
if Gem::Version.new(RUBY_VERSION) > Gem::Version.new("3.0.0")
|
16
|
+
appraise "activesupport_70" do
|
17
|
+
gem "activesupport", "~> 7.0.0"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
15
21
|
if Gem::Version.new(RUBY_VERSION) > Gem::Version.new("2.7.0")
|
16
22
|
appraise "activesupport_edge" do
|
17
23
|
gem "activesupport", git: "https://github.com/rails/rails", require: "activesupport", branch: "main"
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
eve_online (0.
|
4
|
+
eve_online (0.43.0)
|
5
5
|
activesupport (>= 5.2.0)
|
6
6
|
faraday
|
7
7
|
faraday_middleware
|
@@ -9,12 +9,11 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
activesupport (
|
12
|
+
activesupport (7.0.2.4)
|
13
13
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
14
|
i18n (>= 1.6, < 2)
|
15
15
|
minitest (>= 5.1)
|
16
16
|
tzinfo (~> 2.0)
|
17
|
-
zeitwerk (~> 2.3)
|
18
17
|
addressable (2.8.0)
|
19
18
|
public_suffix (>= 2.0.2, < 5.0)
|
20
19
|
appraisal (2.4.1)
|
@@ -23,138 +22,124 @@ GEM
|
|
23
22
|
thor (>= 0.14.0)
|
24
23
|
ast (2.4.2)
|
25
24
|
awesome_print (1.9.2)
|
26
|
-
chef-utils (17.4.38)
|
27
|
-
concurrent-ruby
|
28
25
|
coderay (1.1.3)
|
29
26
|
colorize (0.8.1)
|
30
|
-
concurrent-ruby (1.1.
|
27
|
+
concurrent-ruby (1.1.10)
|
31
28
|
crack (0.4.5)
|
32
29
|
rexml
|
33
|
-
diff-lcs (1.
|
30
|
+
diff-lcs (1.5.0)
|
34
31
|
docile (1.4.0)
|
35
|
-
faraday (1.
|
32
|
+
faraday (1.10.0)
|
36
33
|
faraday-em_http (~> 1.0)
|
37
34
|
faraday-em_synchrony (~> 1.0)
|
38
35
|
faraday-excon (~> 1.1)
|
39
|
-
faraday-httpclient (~> 1.0
|
36
|
+
faraday-httpclient (~> 1.0)
|
37
|
+
faraday-multipart (~> 1.0)
|
40
38
|
faraday-net_http (~> 1.0)
|
41
|
-
faraday-net_http_persistent (~> 1.
|
39
|
+
faraday-net_http_persistent (~> 1.0)
|
42
40
|
faraday-patron (~> 1.0)
|
43
41
|
faraday-rack (~> 1.0)
|
44
|
-
|
42
|
+
faraday-retry (~> 1.0)
|
45
43
|
ruby2_keywords (>= 0.0.4)
|
46
44
|
faraday-em_http (1.0.0)
|
47
45
|
faraday-em_synchrony (1.0.0)
|
48
46
|
faraday-excon (1.1.0)
|
49
47
|
faraday-httpclient (1.0.1)
|
48
|
+
faraday-multipart (1.0.3)
|
49
|
+
multipart-post (>= 1.2, < 3)
|
50
50
|
faraday-net_http (1.0.1)
|
51
51
|
faraday-net_http_persistent (1.2.0)
|
52
52
|
faraday-patron (1.0.0)
|
53
53
|
faraday-rack (1.0.0)
|
54
|
-
|
54
|
+
faraday-retry (1.0.3)
|
55
|
+
faraday_middleware (1.2.0)
|
55
56
|
faraday (~> 1.0)
|
56
|
-
fasterer (0.
|
57
|
+
fasterer (0.10.0)
|
57
58
|
colorize (~> 0.7)
|
58
|
-
ruby_parser (>= 3.
|
59
|
+
ruby_parser (>= 3.19.1)
|
59
60
|
hashdiff (1.0.1)
|
60
|
-
i18n (1.
|
61
|
+
i18n (1.10.0)
|
61
62
|
concurrent-ruby (~> 1.0)
|
62
|
-
kramdown (2.3.1)
|
63
|
-
rexml
|
64
|
-
kramdown-parser-gfm (1.1.0)
|
65
|
-
kramdown (~> 2.0)
|
66
|
-
mdl (0.11.0)
|
67
|
-
kramdown (~> 2.3)
|
68
|
-
kramdown-parser-gfm (~> 1.1)
|
69
|
-
mixlib-cli (~> 2.1, >= 2.1.1)
|
70
|
-
mixlib-config (>= 2.2.1, < 4)
|
71
|
-
mixlib-shellout
|
72
63
|
method_source (1.0.0)
|
73
|
-
mini_portile2 (2.
|
74
|
-
minitest (5.
|
75
|
-
mixlib-cli (2.1.8)
|
76
|
-
mixlib-config (3.0.9)
|
77
|
-
tomlrb
|
78
|
-
mixlib-shellout (3.2.5)
|
79
|
-
chef-utils
|
64
|
+
mini_portile2 (2.8.0)
|
65
|
+
minitest (5.15.0)
|
80
66
|
multipart-post (2.1.1)
|
81
|
-
nokogiri (1.
|
82
|
-
mini_portile2 (~> 2.
|
67
|
+
nokogiri (1.13.4)
|
68
|
+
mini_portile2 (~> 2.8.0)
|
83
69
|
racc (~> 1.4)
|
84
|
-
nokogiri (1.
|
70
|
+
nokogiri (1.13.4-x86_64-darwin)
|
85
71
|
racc (~> 1.4)
|
86
|
-
parallel (1.
|
87
|
-
parser (3.
|
72
|
+
parallel (1.22.1)
|
73
|
+
parser (3.1.2.0)
|
88
74
|
ast (~> 2.4.1)
|
89
75
|
pry (0.14.1)
|
90
76
|
coderay (~> 1.1)
|
91
77
|
method_source (~> 1.0)
|
92
|
-
public_suffix (4.0.
|
93
|
-
racc (1.
|
94
|
-
rainbow (3.
|
78
|
+
public_suffix (4.0.7)
|
79
|
+
racc (1.6.0)
|
80
|
+
rainbow (3.1.1)
|
95
81
|
rake (13.0.6)
|
96
|
-
regexp_parser (2.
|
82
|
+
regexp_parser (2.3.1)
|
97
83
|
rexml (3.2.5)
|
98
|
-
rspec (3.
|
99
|
-
rspec-core (~> 3.
|
100
|
-
rspec-expectations (~> 3.
|
101
|
-
rspec-mocks (~> 3.
|
102
|
-
rspec-core (3.
|
103
|
-
rspec-support (~> 3.
|
104
|
-
rspec-expectations (3.
|
84
|
+
rspec (3.11.0)
|
85
|
+
rspec-core (~> 3.11.0)
|
86
|
+
rspec-expectations (~> 3.11.0)
|
87
|
+
rspec-mocks (~> 3.11.0)
|
88
|
+
rspec-core (3.11.0)
|
89
|
+
rspec-support (~> 3.11.0)
|
90
|
+
rspec-expectations (3.11.0)
|
105
91
|
diff-lcs (>= 1.2.0, < 2.0)
|
106
|
-
rspec-support (~> 3.
|
92
|
+
rspec-support (~> 3.11.0)
|
107
93
|
rspec-its (1.3.0)
|
108
94
|
rspec-core (>= 3.0.0)
|
109
95
|
rspec-expectations (>= 3.0.0)
|
110
|
-
rspec-mocks (3.
|
96
|
+
rspec-mocks (3.11.1)
|
111
97
|
diff-lcs (>= 1.2.0, < 2.0)
|
112
|
-
rspec-support (~> 3.
|
113
|
-
rspec-support (3.
|
114
|
-
rubocop (1.
|
98
|
+
rspec-support (~> 3.11.0)
|
99
|
+
rspec-support (3.11.0)
|
100
|
+
rubocop (1.28.2)
|
115
101
|
parallel (~> 1.10)
|
116
|
-
parser (>= 3.
|
102
|
+
parser (>= 3.1.0.0)
|
117
103
|
rainbow (>= 2.2.2, < 4.0)
|
118
104
|
regexp_parser (>= 1.8, < 3.0)
|
119
105
|
rexml
|
120
|
-
rubocop-ast (>= 1.
|
106
|
+
rubocop-ast (>= 1.17.0, < 2.0)
|
121
107
|
ruby-progressbar (~> 1.7)
|
122
108
|
unicode-display_width (>= 1.4.0, < 3.0)
|
123
|
-
rubocop-ast (1.
|
124
|
-
parser (>= 3.
|
125
|
-
rubocop-performance (1.
|
109
|
+
rubocop-ast (1.17.0)
|
110
|
+
parser (>= 3.1.1.0)
|
111
|
+
rubocop-performance (1.13.3)
|
126
112
|
rubocop (>= 1.7.0, < 2.0)
|
127
113
|
rubocop-ast (>= 0.4.0)
|
128
114
|
ruby-progressbar (1.11.0)
|
129
115
|
ruby2_keywords (0.0.5)
|
130
|
-
ruby_parser (3.
|
131
|
-
sexp_processor (~> 4.
|
132
|
-
sexp_processor (4.
|
116
|
+
ruby_parser (3.19.1)
|
117
|
+
sexp_processor (~> 4.16)
|
118
|
+
sexp_processor (4.16.1)
|
133
119
|
simplecov (0.21.2)
|
134
120
|
docile (~> 1.1)
|
135
121
|
simplecov-html (~> 0.11)
|
136
122
|
simplecov_json_formatter (~> 0.1)
|
137
123
|
simplecov-html (0.12.3)
|
138
|
-
simplecov_json_formatter (0.1.
|
139
|
-
standard (1.
|
140
|
-
rubocop (= 1.
|
141
|
-
rubocop-performance (= 1.
|
142
|
-
thor (1.1
|
143
|
-
tomlrb (2.0.1)
|
124
|
+
simplecov_json_formatter (0.1.4)
|
125
|
+
standard (1.11.0)
|
126
|
+
rubocop (= 1.28.2)
|
127
|
+
rubocop-performance (= 1.13.3)
|
128
|
+
thor (1.2.1)
|
144
129
|
tzinfo (2.0.4)
|
145
130
|
concurrent-ruby (~> 1.0)
|
146
|
-
unicode-display_width (2.
|
147
|
-
vcr (6.
|
131
|
+
unicode-display_width (2.1.0)
|
132
|
+
vcr (6.1.0)
|
148
133
|
webmock (3.14.0)
|
149
134
|
addressable (>= 2.8.0)
|
150
135
|
crack (>= 0.3.2)
|
151
136
|
hashdiff (>= 0.4.0, < 2.0.0)
|
152
|
-
zeitwerk (2.4.2)
|
153
137
|
|
154
138
|
PLATFORMS
|
155
139
|
ruby
|
156
140
|
x86_64-darwin-19
|
157
141
|
x86_64-darwin-20
|
142
|
+
x86_64-darwin-21
|
158
143
|
|
159
144
|
DEPENDENCIES
|
160
145
|
appraisal
|
@@ -162,7 +147,6 @@ DEPENDENCIES
|
|
162
147
|
bundler
|
163
148
|
eve_online!
|
164
149
|
fasterer
|
165
|
-
mdl
|
166
150
|
nokogiri
|
167
151
|
pry
|
168
152
|
rake
|
@@ -174,4 +158,4 @@ DEPENDENCIES
|
|
174
158
|
webmock
|
175
159
|
|
176
160
|
BUNDLED WITH
|
177
|
-
2.
|
161
|
+
2.3.12
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# EveOnline ESI API
|
2
2
|
|
3
|
-
[![CircleCI](https://circleci.com/gh/evemonk/eve_online.svg?style=svg)](https://circleci.com/gh/evemonk/eve_online)
|
4
3
|
[![Gem Version](https://badge.fury.io/rb/eve_online.svg)](https://badge.fury.io/rb/eve_online)
|
5
4
|
[![Gem Downloads](https://img.shields.io/gem/dt/eve_online.svg)](https://rubygems.org/gems/eve_online)
|
6
5
|
[![Known Vulnerabilities](https://snyk.io/test/github/evemonk/eve_online/badge.svg)](https://snyk.io/test/github/evemonk/eve_online)
|
@@ -50,15 +49,16 @@ gem install eve_online
|
|
50
49
|
|
51
50
|
## Supported ruby versions
|
52
51
|
|
53
|
-
* MRI 2.6
|
54
52
|
* MRI 2.7
|
55
53
|
* MRI 3.0
|
54
|
+
* MRI 3.1
|
56
55
|
|
57
56
|
## Supported rails versions
|
58
57
|
|
59
58
|
* 5.2
|
60
59
|
* 6.0
|
61
60
|
* 6.1
|
61
|
+
* 7.0
|
62
62
|
* Edge
|
63
63
|
|
64
64
|
## Usage examples
|
@@ -414,7 +414,6 @@ character = EveOnline::ESI::Character.new(options)
|
|
414
414
|
character.scope # => nil
|
415
415
|
|
416
416
|
character.as_json # => {:alliance_id=>12345678,
|
417
|
-
# :ancestry_id=>24,
|
418
417
|
# :birthday=>Fri, 15 Jan 2010 15:26:00 UTC +00:00,
|
419
418
|
# :bloodline_id=>4,
|
420
419
|
# :corporation_id=>1000168,
|
@@ -427,7 +426,6 @@ character.as_json # => {:alliance_id=>12345678,
|
|
427
426
|
# :title=>nil}
|
428
427
|
|
429
428
|
character.alliance_id # => 12345678
|
430
|
-
character.ancestry_id # => 24
|
431
429
|
character.birthday # => Fri, 15 Jan 2010 15:26:00 UTC +00:00
|
432
430
|
character.bloodline_id # => 4
|
433
431
|
character.corporation_id # => 1000168
|
data/eve_online.gemspec
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
-
require "eve_online/version"
|
3
|
+
require_relative "lib/eve_online/version"
|
6
4
|
|
7
5
|
Gem::Specification.new do |spec|
|
8
6
|
spec.name = "eve_online"
|
@@ -16,9 +14,10 @@ Gem::Specification.new do |spec|
|
|
16
14
|
spec.license = "MIT"
|
17
15
|
|
18
16
|
spec.metadata = {
|
17
|
+
"rubygems_mfa_required" => "true",
|
19
18
|
"bug_tracker_uri" => "https://github.com/evemonk/eve_online/issues",
|
20
|
-
"changelog_uri" => "https://github.com/evemonk/eve_online/blob/
|
21
|
-
"documentation_uri" => "https://github.com/evemonk/eve_online/blob/
|
19
|
+
"changelog_uri" => "https://github.com/evemonk/eve_online/blob/main/CHANGELOG.md",
|
20
|
+
"documentation_uri" => "https://github.com/evemonk/eve_online/blob/main/README.md",
|
22
21
|
"homepage_uri" => "https://github.com/evemonk/eve_online",
|
23
22
|
"source_code_uri" => "https://github.com/evemonk/eve_online"
|
24
23
|
}
|
@@ -35,7 +34,6 @@ Gem::Specification.new do |spec|
|
|
35
34
|
spec.add_development_dependency "simplecov"
|
36
35
|
spec.add_development_dependency "webmock"
|
37
36
|
spec.add_development_dependency "vcr"
|
38
|
-
spec.add_development_dependency "mdl"
|
39
37
|
spec.add_development_dependency "appraisal"
|
40
38
|
|
41
39
|
spec.add_runtime_dependency "faraday"
|
data/lib/eve_online/esi/base.rb
CHANGED
data/lib/eve_online/version.rb
CHANGED
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.
|
4
|
+
version: 0.43.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:
|
11
|
+
date: 2022-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -108,20 +108,6 @@ dependencies:
|
|
108
108
|
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: mdl
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
111
|
- !ruby/object:Gem::Dependency
|
126
112
|
name: appraisal
|
127
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -185,11 +171,11 @@ executables: []
|
|
185
171
|
extensions: []
|
186
172
|
extra_rdoc_files: []
|
187
173
|
files:
|
188
|
-
- ".circleci/config.yml"
|
189
174
|
- ".deepsource.toml"
|
190
175
|
- ".fasterer.yml"
|
191
|
-
- ".github/FUNDING.yml"
|
192
176
|
- ".github/dependabot.yml"
|
177
|
+
- ".github/workflows/mdl.yml"
|
178
|
+
- ".github/workflows/rspec.yml"
|
193
179
|
- ".gitignore"
|
194
180
|
- ".mdlrc"
|
195
181
|
- ".rubocop.yml"
|
@@ -400,9 +386,10 @@ homepage: https://github.com/evemonk/eve_online
|
|
400
386
|
licenses:
|
401
387
|
- MIT
|
402
388
|
metadata:
|
389
|
+
rubygems_mfa_required: 'true'
|
403
390
|
bug_tracker_uri: https://github.com/evemonk/eve_online/issues
|
404
|
-
changelog_uri: https://github.com/evemonk/eve_online/blob/
|
405
|
-
documentation_uri: https://github.com/evemonk/eve_online/blob/
|
391
|
+
changelog_uri: https://github.com/evemonk/eve_online/blob/main/CHANGELOG.md
|
392
|
+
documentation_uri: https://github.com/evemonk/eve_online/blob/main/README.md
|
406
393
|
homepage_uri: https://github.com/evemonk/eve_online
|
407
394
|
source_code_uri: https://github.com/evemonk/eve_online
|
408
395
|
post_install_message:
|
@@ -420,7 +407,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
420
407
|
- !ruby/object:Gem::Version
|
421
408
|
version: '0'
|
422
409
|
requirements: []
|
423
|
-
rubygems_version: 3.
|
410
|
+
rubygems_version: 3.3.12
|
424
411
|
signing_key:
|
425
412
|
specification_version: 4
|
426
413
|
summary: EveOnline ESI API
|
data/.circleci/config.yml
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
version: 2
|
2
|
-
|
3
|
-
jobs:
|
4
|
-
ruby-2.6.8:
|
5
|
-
docker:
|
6
|
-
- image: circleci/ruby:2.6.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 fasterer
|
16
|
-
- run: bundle exec mdl README.md CHANGELOG.md
|
17
|
-
ruby-2.7.4:
|
18
|
-
docker:
|
19
|
-
- image: circleci/ruby:2.7.4
|
20
|
-
steps:
|
21
|
-
- checkout
|
22
|
-
- run: rm Gemfile.lock
|
23
|
-
- run: rm .ruby-version
|
24
|
-
- run: bundle install
|
25
|
-
- run: bundle exec appraisal install || true
|
26
|
-
- run: bundle exec appraisal rake
|
27
|
-
- run: bundle exec standardrb
|
28
|
-
- run: bundle exec fasterer
|
29
|
-
- run: bundle exec mdl README.md CHANGELOG.md
|
30
|
-
ruby-3.0.2:
|
31
|
-
docker:
|
32
|
-
- image: circleci/ruby:3.0.2
|
33
|
-
steps:
|
34
|
-
- checkout
|
35
|
-
- run: rm Gemfile.lock
|
36
|
-
- run: rm .ruby-version
|
37
|
-
- run: bundle install
|
38
|
-
- run: bundle exec appraisal install || true
|
39
|
-
- run: bundle exec appraisal rake
|
40
|
-
- run: bundle exec standardrb
|
41
|
-
- run: bundle exec fasterer
|
42
|
-
- run: bundle exec mdl README.md CHANGELOG.md
|
43
|
-
|
44
|
-
workflows:
|
45
|
-
version: 2
|
46
|
-
tests:
|
47
|
-
jobs:
|
48
|
-
- ruby-2.6.8
|
49
|
-
- ruby-2.7.4
|
50
|
-
- ruby-3.0.2
|
data/.github/FUNDING.yml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
github: biow0lf
|