eve_online 0.44.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/.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 +7 -2
- data/.github/workflows/rspec.yml +14 -5
- data/.github/workflows/scorecards.yml +76 -0
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/.standard.yml +1 -1
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +97 -75
- data/LICENSE.txt +1 -1
- data/README.md +4 -5
- data/eve_online.gemspec +3 -3
- data/gemfiles/{activesupport_6.1.gemfile → activesupport_7.1.gemfile} +2 -2
- data/gemfiles/{activesupport_7.0.gemfile → activesupport_7.2.gemfile} +2 -2
- data/gemfiles/activesupport_main.gemfile +1 -1
- data/lib/eve_online/version.rb +1 -1
- metadata +13 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e66bfbd0e84243b5719180dae7eb671844f16fde3c6b7ed227902ed07821c1c
|
4
|
+
data.tar.gz: 8ae7a13c30adcd4294f86f6626136aad75d516dec2ce8b8c1914803e63847093
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e1cbf4fa47c01394bc5806948712f5e5d220d296200156d6bbcb7dd5c13bca16fc823b9139265bf2426d15ad6b5678e72f0c8efe3b6711ef7cb1adce801b282
|
7
|
+
data.tar.gz: d76cacecabecb10225bacb3baa67ae6f51e02afee15b57d8c73e3adb0ab5e33d80387cedbda7041294bcfd87ef56aaa95d61cba49961b7b6fb3fc56a4c255bba
|
@@ -0,0 +1,78 @@
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
2
|
+
# to commit it to your repository.
|
3
|
+
#
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
5
|
+
# or to provide custom queries or build logic.
|
6
|
+
#
|
7
|
+
# ******** NOTE ********
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
10
|
+
# supported CodeQL languages.
|
11
|
+
#
|
12
|
+
name: "CodeQL"
|
13
|
+
|
14
|
+
on:
|
15
|
+
push:
|
16
|
+
branches: ["main"]
|
17
|
+
pull_request:
|
18
|
+
# The branches below must be a subset of the branches above
|
19
|
+
branches: ["main"]
|
20
|
+
schedule:
|
21
|
+
- cron: "0 0 * * 1"
|
22
|
+
|
23
|
+
permissions:
|
24
|
+
contents: read
|
25
|
+
|
26
|
+
jobs:
|
27
|
+
analyze:
|
28
|
+
name: Analyze
|
29
|
+
runs-on: ubuntu-latest
|
30
|
+
permissions:
|
31
|
+
actions: read
|
32
|
+
contents: read
|
33
|
+
security-events: write
|
34
|
+
|
35
|
+
strategy:
|
36
|
+
fail-fast: false
|
37
|
+
matrix:
|
38
|
+
language: ["ruby"]
|
39
|
+
# CodeQL supports [ $supported-codeql-languages ]
|
40
|
+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
41
|
+
|
42
|
+
steps:
|
43
|
+
- name: Harden Runner
|
44
|
+
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
45
|
+
with:
|
46
|
+
egress-policy: audit
|
47
|
+
|
48
|
+
- name: Checkout repository
|
49
|
+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
50
|
+
|
51
|
+
# Initializes the CodeQL tools for scanning.
|
52
|
+
- name: Initialize CodeQL
|
53
|
+
uses: github/codeql-action/init@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
|
54
|
+
with:
|
55
|
+
languages: ${{ matrix.language }}
|
56
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
57
|
+
# By default, queries listed here will override any specified in a config file.
|
58
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
59
|
+
|
60
|
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
61
|
+
# If this step fails, then you should remove it and run the build manually (see below)
|
62
|
+
- name: Autobuild
|
63
|
+
uses: github/codeql-action/autobuild@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
|
64
|
+
|
65
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
66
|
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
67
|
+
|
68
|
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
69
|
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
70
|
+
|
71
|
+
# - run: |
|
72
|
+
# echo "Run, Build Application using script"
|
73
|
+
# ./location_of_script_within_repo/buildscript.sh
|
74
|
+
|
75
|
+
- name: Perform CodeQL Analysis
|
76
|
+
uses: github/codeql-action/analyze@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
|
77
|
+
with:
|
78
|
+
category: "/language:${{matrix.language}}"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
name: "Dependency Review"
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
|
8
|
+
permissions:
|
9
|
+
contents: read
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
dependency-review:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
steps:
|
15
|
+
- name: Harden Runner
|
16
|
+
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
17
|
+
with:
|
18
|
+
egress-policy: audit
|
19
|
+
|
20
|
+
- name: "Checkout Repository"
|
21
|
+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
22
|
+
- name: "Dependency Review"
|
23
|
+
uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
|
@@ -0,0 +1,33 @@
|
|
1
|
+
name: Fasterer
|
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
|
+
permissions:
|
14
|
+
contents: read
|
15
|
+
|
16
|
+
jobs:
|
17
|
+
fasterer:
|
18
|
+
runs-on: ubuntu-latest
|
19
|
+
|
20
|
+
steps:
|
21
|
+
- name: Harden Runner
|
22
|
+
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
23
|
+
with:
|
24
|
+
egress-policy: audit
|
25
|
+
|
26
|
+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
27
|
+
- name: Set up Ruby
|
28
|
+
uses: ruby/setup-ruby@f26937343756480a8cb3ae1f623b9c8d89ed6984 # v1.196.0
|
29
|
+
with:
|
30
|
+
rubygems: latest
|
31
|
+
bundler: latest
|
32
|
+
bundler-cache: true
|
33
|
+
- run: bundle exec fasterer
|
data/.github/workflows/mdl.yml
CHANGED
@@ -15,5 +15,10 @@ jobs:
|
|
15
15
|
runs-on: ubuntu-latest
|
16
16
|
|
17
17
|
steps:
|
18
|
-
-
|
19
|
-
|
18
|
+
- name: Harden Runner
|
19
|
+
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
20
|
+
with:
|
21
|
+
egress-policy: audit
|
22
|
+
|
23
|
+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
24
|
+
- uses: bewuethr/mdl-action@0d8e72b8dc605e02a94a4f00f93f13f26cf0e265 # v1.1.2
|
data/.github/workflows/rspec.yml
CHANGED
@@ -10,27 +10,36 @@ on:
|
|
10
10
|
schedule:
|
11
11
|
- cron: "0 21 * * 6"
|
12
12
|
|
13
|
+
permissions:
|
14
|
+
contents: read
|
15
|
+
|
13
16
|
jobs:
|
14
17
|
rspec:
|
15
18
|
runs-on: ubuntu-latest
|
16
19
|
strategy:
|
17
20
|
fail-fast: false
|
18
21
|
matrix:
|
19
|
-
ruby: ["3.
|
20
|
-
activesupport: ["
|
22
|
+
ruby: ["3.2", "3.3", "head"]
|
23
|
+
activesupport: ["7.1", "7.2", "main"]
|
21
24
|
env:
|
22
25
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activesupport_${{ matrix.activesupport }}.gemfile
|
23
26
|
|
24
27
|
name: Ruby ${{ matrix.ruby }} and ActiveSupport ${{ matrix.activesupport }}
|
25
28
|
steps:
|
26
|
-
-
|
29
|
+
- name: Harden Runner
|
30
|
+
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
31
|
+
with:
|
32
|
+
egress-policy: audit
|
33
|
+
|
34
|
+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
27
35
|
- run: rm Gemfile.lock
|
28
36
|
- run: rm .ruby-version
|
29
37
|
- name: Set up Ruby
|
30
|
-
uses: ruby/setup-ruby@v1
|
38
|
+
uses: ruby/setup-ruby@f26937343756480a8cb3ae1f623b9c8d89ed6984 # v1.196.0
|
31
39
|
with:
|
32
40
|
ruby-version: ${{ matrix.ruby }}
|
41
|
+
rubygems: latest
|
42
|
+
bundler: latest
|
33
43
|
bundler-cache: true
|
34
44
|
- run: bundle exec rspec
|
35
45
|
- run: bundle exec standardrb
|
36
|
-
- run: bundle exec fasterer
|
@@ -0,0 +1,76 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub. They are provided
|
2
|
+
# by a third-party and are governed by separate terms of service, privacy
|
3
|
+
# policy, and support documentation.
|
4
|
+
|
5
|
+
name: Scorecard supply-chain security
|
6
|
+
on:
|
7
|
+
# For Branch-Protection check. Only the default branch is supported. See
|
8
|
+
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
|
9
|
+
branch_protection_rule:
|
10
|
+
# To guarantee Maintained check is occasionally updated. See
|
11
|
+
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
|
12
|
+
schedule:
|
13
|
+
- cron: '20 7 * * 2'
|
14
|
+
push:
|
15
|
+
branches: ["main"]
|
16
|
+
|
17
|
+
# Declare default permissions as read only.
|
18
|
+
permissions: read-all
|
19
|
+
|
20
|
+
jobs:
|
21
|
+
analysis:
|
22
|
+
name: Scorecard analysis
|
23
|
+
runs-on: ubuntu-latest
|
24
|
+
permissions:
|
25
|
+
# Needed to upload the results to code-scanning dashboard.
|
26
|
+
security-events: write
|
27
|
+
# Needed to publish results and get a badge (see publish_results below).
|
28
|
+
id-token: write
|
29
|
+
contents: read
|
30
|
+
actions: read
|
31
|
+
|
32
|
+
steps:
|
33
|
+
- name: Harden Runner
|
34
|
+
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
35
|
+
with:
|
36
|
+
egress-policy: audit
|
37
|
+
|
38
|
+
- name: "Checkout code"
|
39
|
+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
40
|
+
with:
|
41
|
+
persist-credentials: false
|
42
|
+
|
43
|
+
- name: "Run analysis"
|
44
|
+
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
|
45
|
+
with:
|
46
|
+
results_file: results.sarif
|
47
|
+
results_format: sarif
|
48
|
+
# (Optional) "write" PAT token. Uncomment the `repo_token` line below if:
|
49
|
+
# - you want to enable the Branch-Protection check on a *public* repository, or
|
50
|
+
# - you are installing Scorecards on a *private* repository
|
51
|
+
# To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat.
|
52
|
+
# repo_token: ${{ secrets.SCORECARD_TOKEN }}
|
53
|
+
|
54
|
+
# Public repositories:
|
55
|
+
# - Publish results to OpenSSF REST API for easy access by consumers
|
56
|
+
# - Allows the repository to include the Scorecard badge.
|
57
|
+
# - See https://github.com/ossf/scorecard-action#publishing-results.
|
58
|
+
# For private repositories:
|
59
|
+
# - `publish_results` will always be set to `false`, regardless
|
60
|
+
# of the value entered here.
|
61
|
+
publish_results: true
|
62
|
+
|
63
|
+
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
|
64
|
+
# format to the repository Actions tab.
|
65
|
+
- name: "Upload artifact"
|
66
|
+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
|
67
|
+
with:
|
68
|
+
name: SARIF file
|
69
|
+
path: results.sarif
|
70
|
+
retention-days: 5
|
71
|
+
|
72
|
+
# Upload the results to GitHub's code scanning dashboard.
|
73
|
+
- name: "Upload to code-scanning"
|
74
|
+
uses: github/codeql-action/upload-sarif@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3.26.12
|
75
|
+
with:
|
76
|
+
sarif_file: results.sarif
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.5
|
data/.standard.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,133 +1,155 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
eve_online (0.
|
5
|
-
activesupport (>=
|
4
|
+
eve_online (0.45.0)
|
5
|
+
activesupport (>= 7.1.0)
|
6
6
|
faraday (>= 2.3.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
activesupport (7.
|
12
|
-
|
11
|
+
activesupport (7.2.1)
|
12
|
+
base64
|
13
|
+
bigdecimal
|
14
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
15
|
+
connection_pool (>= 2.2.5)
|
16
|
+
drb
|
13
17
|
i18n (>= 1.6, < 2)
|
18
|
+
logger (>= 1.4.2)
|
14
19
|
minitest (>= 5.1)
|
15
|
-
|
16
|
-
|
17
|
-
|
20
|
+
securerandom (>= 0.3)
|
21
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
22
|
+
addressable (2.8.7)
|
23
|
+
public_suffix (>= 2.0.2, < 7.0)
|
18
24
|
ast (2.4.2)
|
19
25
|
awesome_print (1.9.2)
|
26
|
+
base64 (0.2.0)
|
27
|
+
bigdecimal (3.1.8)
|
20
28
|
coderay (1.1.3)
|
21
|
-
|
22
|
-
|
23
|
-
crack (0.
|
29
|
+
concurrent-ruby (1.3.4)
|
30
|
+
connection_pool (2.4.1)
|
31
|
+
crack (1.0.0)
|
32
|
+
bigdecimal
|
24
33
|
rexml
|
25
|
-
diff-lcs (1.5.
|
26
|
-
docile (1.4.
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
34
|
+
diff-lcs (1.5.1)
|
35
|
+
docile (1.4.1)
|
36
|
+
drb (2.2.1)
|
37
|
+
faraday (2.12.0)
|
38
|
+
faraday-net_http (>= 2.0, < 3.4)
|
39
|
+
json
|
40
|
+
logger
|
41
|
+
faraday-net_http (3.3.0)
|
42
|
+
net-http
|
43
|
+
fasterer (0.11.0)
|
33
44
|
ruby_parser (>= 3.19.1)
|
34
|
-
hashdiff (1.
|
35
|
-
i18n (1.14.
|
45
|
+
hashdiff (1.1.1)
|
46
|
+
i18n (1.14.6)
|
36
47
|
concurrent-ruby (~> 1.0)
|
37
|
-
json (2.
|
48
|
+
json (2.7.2)
|
38
49
|
language_server-protocol (3.17.0.3)
|
39
|
-
lint_roller (1.
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
50
|
+
lint_roller (1.1.0)
|
51
|
+
logger (1.6.1)
|
52
|
+
method_source (1.1.0)
|
53
|
+
mini_portile2 (2.8.7)
|
54
|
+
minitest (5.25.1)
|
55
|
+
net-http (0.4.1)
|
56
|
+
uri
|
57
|
+
nokogiri (1.16.7)
|
44
58
|
mini_portile2 (~> 2.8.2)
|
45
59
|
racc (~> 1.4)
|
46
|
-
nokogiri (1.
|
60
|
+
nokogiri (1.16.7-aarch64-linux)
|
47
61
|
racc (~> 1.4)
|
48
|
-
nokogiri (1.
|
62
|
+
nokogiri (1.16.7-arm64-darwin)
|
49
63
|
racc (~> 1.4)
|
50
|
-
|
51
|
-
|
64
|
+
nokogiri (1.16.7-x86_64-darwin)
|
65
|
+
racc (~> 1.4)
|
66
|
+
nokogiri (1.16.7-x86_64-linux)
|
67
|
+
racc (~> 1.4)
|
68
|
+
parallel (1.26.3)
|
69
|
+
parser (3.3.5.0)
|
52
70
|
ast (~> 2.4.1)
|
53
71
|
racc
|
54
72
|
pry (0.14.2)
|
55
73
|
coderay (~> 1.1)
|
56
74
|
method_source (~> 1.0)
|
57
|
-
public_suffix (
|
58
|
-
racc (1.
|
75
|
+
public_suffix (6.0.1)
|
76
|
+
racc (1.8.1)
|
59
77
|
rainbow (3.1.1)
|
60
|
-
rake (13.
|
61
|
-
regexp_parser (2.
|
62
|
-
rexml (3.
|
63
|
-
rspec (3.
|
64
|
-
rspec-core (~> 3.
|
65
|
-
rspec-expectations (~> 3.
|
66
|
-
rspec-mocks (~> 3.
|
67
|
-
rspec-core (3.
|
68
|
-
rspec-support (~> 3.
|
69
|
-
rspec-expectations (3.
|
78
|
+
rake (13.2.1)
|
79
|
+
regexp_parser (2.9.2)
|
80
|
+
rexml (3.3.8)
|
81
|
+
rspec (3.13.0)
|
82
|
+
rspec-core (~> 3.13.0)
|
83
|
+
rspec-expectations (~> 3.13.0)
|
84
|
+
rspec-mocks (~> 3.13.0)
|
85
|
+
rspec-core (3.13.1)
|
86
|
+
rspec-support (~> 3.13.0)
|
87
|
+
rspec-expectations (3.13.3)
|
70
88
|
diff-lcs (>= 1.2.0, < 2.0)
|
71
|
-
rspec-support (~> 3.
|
89
|
+
rspec-support (~> 3.13.0)
|
72
90
|
rspec-its (1.3.0)
|
73
91
|
rspec-core (>= 3.0.0)
|
74
92
|
rspec-expectations (>= 3.0.0)
|
75
|
-
rspec-mocks (3.
|
93
|
+
rspec-mocks (3.13.2)
|
76
94
|
diff-lcs (>= 1.2.0, < 2.0)
|
77
|
-
rspec-support (~> 3.
|
78
|
-
rspec-support (3.
|
79
|
-
rubocop (1.
|
95
|
+
rspec-support (~> 3.13.0)
|
96
|
+
rspec-support (3.13.1)
|
97
|
+
rubocop (1.66.1)
|
80
98
|
json (~> 2.3)
|
99
|
+
language_server-protocol (>= 3.17.0)
|
81
100
|
parallel (~> 1.10)
|
82
|
-
parser (>= 3.
|
101
|
+
parser (>= 3.3.0.2)
|
83
102
|
rainbow (>= 2.2.2, < 4.0)
|
84
|
-
regexp_parser (>=
|
85
|
-
|
86
|
-
rubocop-ast (>= 1.28.0, < 2.0)
|
103
|
+
regexp_parser (>= 2.4, < 3.0)
|
104
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
87
105
|
ruby-progressbar (~> 1.7)
|
88
106
|
unicode-display_width (>= 2.4.0, < 3.0)
|
89
|
-
rubocop-ast (1.
|
90
|
-
parser (>= 3.
|
91
|
-
rubocop-performance (1.
|
92
|
-
rubocop (>= 1.
|
93
|
-
rubocop-ast (>=
|
107
|
+
rubocop-ast (1.32.3)
|
108
|
+
parser (>= 3.3.1.0)
|
109
|
+
rubocop-performance (1.22.1)
|
110
|
+
rubocop (>= 1.48.1, < 2.0)
|
111
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
94
112
|
ruby-progressbar (1.13.0)
|
95
|
-
|
96
|
-
|
113
|
+
ruby_parser (3.21.1)
|
114
|
+
racc (~> 1.5)
|
97
115
|
sexp_processor (~> 4.16)
|
98
|
-
|
116
|
+
securerandom (0.3.1)
|
117
|
+
sexp_processor (4.17.2)
|
99
118
|
simplecov (0.22.0)
|
100
119
|
docile (~> 1.1)
|
101
120
|
simplecov-html (~> 0.11)
|
102
121
|
simplecov_json_formatter (~> 0.1)
|
103
|
-
simplecov-html (0.
|
122
|
+
simplecov-html (0.13.1)
|
104
123
|
simplecov_json_formatter (0.1.4)
|
105
|
-
standard (1.
|
124
|
+
standard (1.41.0)
|
106
125
|
language_server-protocol (~> 3.17.0.2)
|
107
126
|
lint_roller (~> 1.0)
|
108
|
-
rubocop (~> 1.
|
127
|
+
rubocop (~> 1.66.0)
|
109
128
|
standard-custom (~> 1.0.0)
|
110
|
-
standard-performance (~> 1.
|
111
|
-
standard-custom (1.0.
|
112
|
-
lint_roller (~> 1.0)
|
113
|
-
standard-performance (1.1.0)
|
129
|
+
standard-performance (~> 1.5)
|
130
|
+
standard-custom (1.0.2)
|
114
131
|
lint_roller (~> 1.0)
|
115
|
-
rubocop
|
132
|
+
rubocop (~> 1.50)
|
133
|
+
standard-performance (1.5.0)
|
134
|
+
lint_roller (~> 1.1)
|
135
|
+
rubocop-performance (~> 1.22.0)
|
116
136
|
tzinfo (2.0.6)
|
117
137
|
concurrent-ruby (~> 1.0)
|
118
|
-
unicode-display_width (2.
|
119
|
-
|
120
|
-
|
138
|
+
unicode-display_width (2.6.0)
|
139
|
+
uri (0.13.1)
|
140
|
+
vcr (6.3.1)
|
141
|
+
base64
|
142
|
+
webmock (3.24.0)
|
121
143
|
addressable (>= 2.8.0)
|
122
144
|
crack (>= 0.3.2)
|
123
145
|
hashdiff (>= 0.4.0, < 2.0.0)
|
124
146
|
|
125
147
|
PLATFORMS
|
126
|
-
|
148
|
+
aarch64-linux
|
149
|
+
arm64-darwin
|
127
150
|
ruby
|
128
|
-
x86_64-darwin
|
129
|
-
x86_64-
|
130
|
-
x86_64-darwin-21
|
151
|
+
x86_64-darwin
|
152
|
+
x86_64-linux
|
131
153
|
|
132
154
|
DEPENDENCIES
|
133
155
|
awesome_print
|
@@ -145,4 +167,4 @@ DEPENDENCIES
|
|
145
167
|
webmock
|
146
168
|
|
147
169
|
BUNDLED WITH
|
148
|
-
2.
|
170
|
+
2.5.21
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -47,14 +47,13 @@ gem install eve_online
|
|
47
47
|
|
48
48
|
## Supported ruby versions
|
49
49
|
|
50
|
-
* MRI 3.0
|
51
|
-
* MRI 3.1
|
52
50
|
* MRI 3.2
|
51
|
+
* MRI 3.3
|
53
52
|
|
54
53
|
## Supported rails versions
|
55
54
|
|
56
|
-
*
|
57
|
-
* 7.
|
55
|
+
* 7.1
|
56
|
+
* 7.2
|
58
57
|
* main
|
59
58
|
|
60
59
|
## Usage examples
|
@@ -3091,7 +3090,7 @@ Issue reports and pull requests are welcome on GitHub at <https://github.com/eve
|
|
3091
3090
|
|
3092
3091
|
## Author
|
3093
3092
|
|
3094
|
-
*
|
3093
|
+
* Ihor Zubkov (@biow0lf)
|
3095
3094
|
|
3096
3095
|
## Contributors
|
3097
3096
|
|
data/eve_online.gemspec
CHANGED
@@ -5,7 +5,7 @@ require_relative "lib/eve_online/version"
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "eve_online"
|
7
7
|
spec.version = EveOnline::VERSION
|
8
|
-
spec.authors = ["
|
8
|
+
spec.authors = ["Ihor Zubkov"]
|
9
9
|
spec.email = ["igor.zubkov@gmail.com"]
|
10
10
|
|
11
11
|
spec.summary = "EveOnline ESI API"
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|bin|swagger)/}) }
|
26
26
|
spec.require_paths = ["lib"]
|
27
27
|
|
28
|
-
spec.required_ruby_version = ">= 3.
|
28
|
+
spec.required_ruby_version = ">= 3.2"
|
29
29
|
|
30
30
|
spec.add_development_dependency "bundler"
|
31
31
|
spec.add_development_dependency "rake"
|
@@ -36,5 +36,5 @@ Gem::Specification.new do |spec|
|
|
36
36
|
spec.add_development_dependency "vcr"
|
37
37
|
|
38
38
|
spec.add_runtime_dependency "faraday", ">= 2.3.0"
|
39
|
-
spec.add_runtime_dependency "activesupport", ">=
|
39
|
+
spec.add_runtime_dependency "activesupport", ">= 7.1.0"
|
40
40
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
@@ -7,6 +7,6 @@ gem "awesome_print", require: "ap"
|
|
7
7
|
gem "pry"
|
8
8
|
gem "standard", require: false
|
9
9
|
gem "fasterer", require: false
|
10
|
-
gem "activesupport", "~>
|
10
|
+
gem "activesupport", "~> 7.1.0"
|
11
11
|
|
12
12
|
gemspec path: "../"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
@@ -7,6 +7,6 @@ gem "awesome_print", require: "ap"
|
|
7
7
|
gem "pry"
|
8
8
|
gem "standard", require: false
|
9
9
|
gem "fasterer", require: false
|
10
|
-
gem "activesupport", "
|
10
|
+
gem "activesupport", git: "https://github.com/rails/rails", require: "activesupport", branch: "7-2-stable"
|
11
11
|
|
12
12
|
gemspec path: "../"
|
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.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Ihor Zubkov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -128,14 +128,14 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - ">="
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version:
|
131
|
+
version: 7.1.0
|
132
132
|
type: :runtime
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
138
|
+
version: 7.1.0
|
139
139
|
description: EveOnline ESI API.
|
140
140
|
email:
|
141
141
|
- igor.zubkov@gmail.com
|
@@ -146,8 +146,12 @@ files:
|
|
146
146
|
- ".deepsource.toml"
|
147
147
|
- ".fasterer.yml"
|
148
148
|
- ".github/dependabot.yml"
|
149
|
+
- ".github/workflows/codeql.yml"
|
150
|
+
- ".github/workflows/dependency-review.yml"
|
151
|
+
- ".github/workflows/fasterer.yml"
|
149
152
|
- ".github/workflows/mdl.yml"
|
150
153
|
- ".github/workflows/rspec.yml"
|
154
|
+
- ".github/workflows/scorecards.yml"
|
151
155
|
- ".gitignore"
|
152
156
|
- ".mdlrc"
|
153
157
|
- ".rubocop.yml"
|
@@ -160,8 +164,8 @@ files:
|
|
160
164
|
- README.md
|
161
165
|
- Rakefile
|
162
166
|
- eve_online.gemspec
|
163
|
-
- gemfiles/
|
164
|
-
- gemfiles/activesupport_7.
|
167
|
+
- gemfiles/activesupport_7.1.gemfile
|
168
|
+
- gemfiles/activesupport_7.2.gemfile
|
165
169
|
- gemfiles/activesupport_main.gemfile
|
166
170
|
- lib/eve_online.rb
|
167
171
|
- lib/eve_online/esi/alliance.rb
|
@@ -373,14 +377,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
373
377
|
requirements:
|
374
378
|
- - ">="
|
375
379
|
- !ruby/object:Gem::Version
|
376
|
-
version: '3.
|
380
|
+
version: '3.2'
|
377
381
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
378
382
|
requirements:
|
379
383
|
- - ">="
|
380
384
|
- !ruby/object:Gem::Version
|
381
385
|
version: '0'
|
382
386
|
requirements: []
|
383
|
-
rubygems_version: 3.
|
387
|
+
rubygems_version: 3.5.21
|
384
388
|
signing_key:
|
385
389
|
specification_version: 4
|
386
390
|
summary: EveOnline ESI API
|