eve_online 0.43.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/.fasterer.yml +3 -0
- data/.github/dependabot.yml +16 -8
- 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 +8 -3
- data/.github/workflows/rspec.yml +20 -11
- data/.github/workflows/scorecards.yml +76 -0
- data/.gitignore +1 -1
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/.standard.yml +1 -1
- data/CHANGELOG.md +22 -0
- data/Gemfile.lock +112 -103
- data/LICENSE.txt +1 -1
- data/README.md +6 -190
- data/eve_online.gemspec +4 -6
- data/gemfiles/activesupport_7.1.gemfile +12 -0
- data/gemfiles/activesupport_7.2.gemfile +12 -0
- data/gemfiles/activesupport_main.gemfile +12 -0
- data/lib/eve_online/esi/base.rb +4 -31
- data/lib/eve_online/esi/character_assets_locations.rb +0 -4
- data/lib/eve_online/esi/character_assets_names.rb +0 -4
- data/lib/eve_online/esi/corporation_assets_locations.rb +0 -4
- data/lib/eve_online/esi/corporation_assets_names.rb +0 -4
- data/lib/eve_online/version.rb +1 -1
- data/lib/eve_online.rb +0 -1
- metadata +16 -39
- data/Appraisals +0 -25
- data/lib/eve_online/exceptions/not_modified.rb +0 -8
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
|
data/.fasterer.yml
CHANGED
data/.github/dependabot.yml
CHANGED
@@ -1,10 +1,18 @@
|
|
1
1
|
version: 2
|
2
2
|
updates:
|
3
|
-
- package-ecosystem: bundler
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
3
|
+
- package-ecosystem: "bundler"
|
4
|
+
directory: "/"
|
5
|
+
schedule:
|
6
|
+
interval: "daily"
|
7
|
+
open-pull-requests-limit: 99
|
8
|
+
allow:
|
9
|
+
- dependency-type: "direct"
|
10
|
+
- dependency-type: "indirect"
|
11
|
+
assignees:
|
12
|
+
- "biow0lf"
|
13
|
+
- package-ecosystem: "github-actions"
|
14
|
+
directory: "/"
|
15
|
+
schedule:
|
16
|
+
interval: "daily"
|
17
|
+
assignees:
|
18
|
+
- "biow0lf"
|
@@ -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
@@ -1,4 +1,4 @@
|
|
1
|
-
name:
|
1
|
+
name: "Markdown Lint"
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
@@ -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:
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
22
|
+
ruby: ["3.2", "3.3", "head"]
|
23
|
+
activesupport: ["7.1", "7.2", "main"]
|
24
|
+
env:
|
25
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activesupport_${{ matrix.activesupport }}.gemfile
|
26
|
+
|
27
|
+
name: Ruby ${{ matrix.ruby }} and ActiveSupport ${{ matrix.activesupport }}
|
24
28
|
steps:
|
25
|
-
-
|
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
|
26
35
|
- run: rm Gemfile.lock
|
27
36
|
- run: rm .ruby-version
|
28
37
|
- name: Set up Ruby
|
29
|
-
uses: ruby/setup-ruby@v1
|
38
|
+
uses: ruby/setup-ruby@f26937343756480a8cb3ae1f623b9c8d89ed6984 # v1.196.0
|
30
39
|
with:
|
31
40
|
ruby-version: ${{ matrix.ruby }}
|
32
|
-
|
33
|
-
|
34
|
-
|
41
|
+
rubygems: latest
|
42
|
+
bundler: latest
|
43
|
+
bundler-cache: true
|
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/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.5
|
data/.standard.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v0.45.0
|
4
|
+
|
5
|
+
* Rails 7.1 and 7.2
|
6
|
+
* Ruby 3.3
|
7
|
+
* Drop Ruby 3.0
|
8
|
+
* Drop Ruby 3.1
|
9
|
+
* Drop Rails 6.1
|
10
|
+
* Drop Rails 7.0
|
11
|
+
|
12
|
+
## v0.44.0
|
13
|
+
|
14
|
+
* Update `faraday` to `>= 2.3.0`
|
15
|
+
* BREAKING: Always pass esi to middleware. To migrate, remove any esi passing.
|
16
|
+
* Ruby 3.2
|
17
|
+
* Bump activesupport requirements to 6.1 or later
|
18
|
+
* Remove etag support. Use `faraday-http-cache` instead.
|
19
|
+
* Remove `EveOnline::Exceptions::NotModified`
|
20
|
+
* Remove `EveOnline::ESI::Base#etag=`
|
21
|
+
* Remove `EveOnline::ESI::Base#etag`
|
22
|
+
* Remove `EveOnline::ESI::Base#not_modified?`
|
23
|
+
* Remove `EveOnline::ESI::Base#content`
|
24
|
+
|
3
25
|
## v0.43.0
|
4
26
|
|
5
27
|
* Ruby 3.1.2
|
data/Gemfile.lock
CHANGED
@@ -1,148 +1,157 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
eve_online (0.
|
5
|
-
activesupport (>=
|
6
|
-
faraday
|
7
|
-
faraday_middleware
|
4
|
+
eve_online (0.45.0)
|
5
|
+
activesupport (>= 7.1.0)
|
6
|
+
faraday (>= 2.3.0)
|
8
7
|
|
9
8
|
GEM
|
10
9
|
remote: https://rubygems.org/
|
11
10
|
specs:
|
12
|
-
activesupport (7.
|
13
|
-
|
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
|
14
17
|
i18n (>= 1.6, < 2)
|
18
|
+
logger (>= 1.4.2)
|
15
19
|
minitest (>= 5.1)
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
bundler
|
21
|
-
rake
|
22
|
-
thor (>= 0.14.0)
|
20
|
+
securerandom (>= 0.3)
|
21
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
22
|
+
addressable (2.8.7)
|
23
|
+
public_suffix (>= 2.0.2, < 7.0)
|
23
24
|
ast (2.4.2)
|
24
25
|
awesome_print (1.9.2)
|
26
|
+
base64 (0.2.0)
|
27
|
+
bigdecimal (3.1.8)
|
25
28
|
coderay (1.1.3)
|
26
|
-
|
27
|
-
|
28
|
-
crack (0.
|
29
|
+
concurrent-ruby (1.3.4)
|
30
|
+
connection_pool (2.4.1)
|
31
|
+
crack (1.0.0)
|
32
|
+
bigdecimal
|
29
33
|
rexml
|
30
|
-
diff-lcs (1.5.
|
31
|
-
docile (1.4.
|
32
|
-
|
33
|
-
|
34
|
-
faraday-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
faraday-patron (~> 1.0)
|
41
|
-
faraday-rack (~> 1.0)
|
42
|
-
faraday-retry (~> 1.0)
|
43
|
-
ruby2_keywords (>= 0.0.4)
|
44
|
-
faraday-em_http (1.0.0)
|
45
|
-
faraday-em_synchrony (1.0.0)
|
46
|
-
faraday-excon (1.1.0)
|
47
|
-
faraday-httpclient (1.0.1)
|
48
|
-
faraday-multipart (1.0.3)
|
49
|
-
multipart-post (>= 1.2, < 3)
|
50
|
-
faraday-net_http (1.0.1)
|
51
|
-
faraday-net_http_persistent (1.2.0)
|
52
|
-
faraday-patron (1.0.0)
|
53
|
-
faraday-rack (1.0.0)
|
54
|
-
faraday-retry (1.0.3)
|
55
|
-
faraday_middleware (1.2.0)
|
56
|
-
faraday (~> 1.0)
|
57
|
-
fasterer (0.10.0)
|
58
|
-
colorize (~> 0.7)
|
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)
|
59
44
|
ruby_parser (>= 3.19.1)
|
60
|
-
hashdiff (1.
|
61
|
-
i18n (1.
|
45
|
+
hashdiff (1.1.1)
|
46
|
+
i18n (1.14.6)
|
62
47
|
concurrent-ruby (~> 1.0)
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
48
|
+
json (2.7.2)
|
49
|
+
language_server-protocol (3.17.0.3)
|
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)
|
58
|
+
mini_portile2 (~> 2.8.2)
|
69
59
|
racc (~> 1.4)
|
70
|
-
nokogiri (1.
|
60
|
+
nokogiri (1.16.7-aarch64-linux)
|
71
61
|
racc (~> 1.4)
|
72
|
-
|
73
|
-
|
62
|
+
nokogiri (1.16.7-arm64-darwin)
|
63
|
+
racc (~> 1.4)
|
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)
|
74
70
|
ast (~> 2.4.1)
|
75
|
-
|
71
|
+
racc
|
72
|
+
pry (0.14.2)
|
76
73
|
coderay (~> 1.1)
|
77
74
|
method_source (~> 1.0)
|
78
|
-
public_suffix (
|
79
|
-
racc (1.
|
75
|
+
public_suffix (6.0.1)
|
76
|
+
racc (1.8.1)
|
80
77
|
rainbow (3.1.1)
|
81
|
-
rake (13.
|
82
|
-
regexp_parser (2.
|
83
|
-
rexml (3.
|
84
|
-
rspec (3.
|
85
|
-
rspec-core (~> 3.
|
86
|
-
rspec-expectations (~> 3.
|
87
|
-
rspec-mocks (~> 3.
|
88
|
-
rspec-core (3.
|
89
|
-
rspec-support (~> 3.
|
90
|
-
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)
|
91
88
|
diff-lcs (>= 1.2.0, < 2.0)
|
92
|
-
rspec-support (~> 3.
|
89
|
+
rspec-support (~> 3.13.0)
|
93
90
|
rspec-its (1.3.0)
|
94
91
|
rspec-core (>= 3.0.0)
|
95
92
|
rspec-expectations (>= 3.0.0)
|
96
|
-
rspec-mocks (3.
|
93
|
+
rspec-mocks (3.13.2)
|
97
94
|
diff-lcs (>= 1.2.0, < 2.0)
|
98
|
-
rspec-support (~> 3.
|
99
|
-
rspec-support (3.
|
100
|
-
rubocop (1.
|
95
|
+
rspec-support (~> 3.13.0)
|
96
|
+
rspec-support (3.13.1)
|
97
|
+
rubocop (1.66.1)
|
98
|
+
json (~> 2.3)
|
99
|
+
language_server-protocol (>= 3.17.0)
|
101
100
|
parallel (~> 1.10)
|
102
|
-
parser (>= 3.
|
101
|
+
parser (>= 3.3.0.2)
|
103
102
|
rainbow (>= 2.2.2, < 4.0)
|
104
|
-
regexp_parser (>=
|
105
|
-
|
106
|
-
rubocop-ast (>= 1.17.0, < 2.0)
|
103
|
+
regexp_parser (>= 2.4, < 3.0)
|
104
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
107
105
|
ruby-progressbar (~> 1.7)
|
108
|
-
unicode-display_width (>=
|
109
|
-
rubocop-ast (1.
|
110
|
-
parser (>= 3.
|
111
|
-
rubocop-performance (1.
|
112
|
-
rubocop (>= 1.
|
113
|
-
rubocop-ast (>=
|
114
|
-
ruby-progressbar (1.
|
115
|
-
|
116
|
-
|
106
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
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)
|
112
|
+
ruby-progressbar (1.13.0)
|
113
|
+
ruby_parser (3.21.1)
|
114
|
+
racc (~> 1.5)
|
117
115
|
sexp_processor (~> 4.16)
|
118
|
-
|
119
|
-
|
116
|
+
securerandom (0.3.1)
|
117
|
+
sexp_processor (4.17.2)
|
118
|
+
simplecov (0.22.0)
|
120
119
|
docile (~> 1.1)
|
121
120
|
simplecov-html (~> 0.11)
|
122
121
|
simplecov_json_formatter (~> 0.1)
|
123
|
-
simplecov-html (0.
|
122
|
+
simplecov-html (0.13.1)
|
124
123
|
simplecov_json_formatter (0.1.4)
|
125
|
-
standard (1.
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
124
|
+
standard (1.41.0)
|
125
|
+
language_server-protocol (~> 3.17.0.2)
|
126
|
+
lint_roller (~> 1.0)
|
127
|
+
rubocop (~> 1.66.0)
|
128
|
+
standard-custom (~> 1.0.0)
|
129
|
+
standard-performance (~> 1.5)
|
130
|
+
standard-custom (1.0.2)
|
131
|
+
lint_roller (~> 1.0)
|
132
|
+
rubocop (~> 1.50)
|
133
|
+
standard-performance (1.5.0)
|
134
|
+
lint_roller (~> 1.1)
|
135
|
+
rubocop-performance (~> 1.22.0)
|
136
|
+
tzinfo (2.0.6)
|
130
137
|
concurrent-ruby (~> 1.0)
|
131
|
-
unicode-display_width (2.
|
132
|
-
|
133
|
-
|
138
|
+
unicode-display_width (2.6.0)
|
139
|
+
uri (0.13.1)
|
140
|
+
vcr (6.3.1)
|
141
|
+
base64
|
142
|
+
webmock (3.24.0)
|
134
143
|
addressable (>= 2.8.0)
|
135
144
|
crack (>= 0.3.2)
|
136
145
|
hashdiff (>= 0.4.0, < 2.0.0)
|
137
146
|
|
138
147
|
PLATFORMS
|
148
|
+
aarch64-linux
|
149
|
+
arm64-darwin
|
139
150
|
ruby
|
140
|
-
x86_64-darwin
|
141
|
-
x86_64-
|
142
|
-
x86_64-darwin-21
|
151
|
+
x86_64-darwin
|
152
|
+
x86_64-linux
|
143
153
|
|
144
154
|
DEPENDENCIES
|
145
|
-
appraisal
|
146
155
|
awesome_print
|
147
156
|
bundler
|
148
157
|
eve_online!
|
@@ -158,4 +167,4 @@ DEPENDENCIES
|
|
158
167
|
webmock
|
159
168
|
|
160
169
|
BUNDLED WITH
|
161
|
-
2.
|
170
|
+
2.5.21
|
data/LICENSE.txt
CHANGED