eve_online 0.44.0 → 0.46.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: 3d4048b8d7c69dd7875291d88bb0534793ced1395fb043b065827fc736b2c63e
4
- data.tar.gz: a6e81d1624cd13051f0679298784d5b4e8c50d95ea6c8da5493f6d749803a4b4
3
+ metadata.gz: 151a5eddd62026569da3e5def454496955faa3dcb814114582ec1347226cf5e0
4
+ data.tar.gz: 8c49ed4e59461768e39b51b440f161cea65c70f8990764ff7dd447b4d7c43ace
5
5
  SHA512:
6
- metadata.gz: 88ecaa6eb01fa3e538bd7bec3c730d29325fc72dec3370aad65591e405745594eb40e682aa8b619fe2c8a25ac6f23d3eb49bf05470daa98bb2f99a50ae957301
7
- data.tar.gz: 6ce52081afd6e1212620f7ffff888fe1b82a659eed175186c6b2eb856529ad2c7f04d512427d4046bf4190679e2812d0a1f6d20f508278cec9563ea902395639
6
+ metadata.gz: 7525391f9c0dbee16695e1a5c72a36d49cfaf08f40c21627fbcbbf16ba83bbdd979762506185f5af3a33989f2ea5af24471e527c8993a21802d25e20cc0e9e31
7
+ data.tar.gz: 779cbda4bde1de746fd515ff00c19b0851ef259bf9af47c45e4187b2c42b4c156df08d047d1ab163c34a0092c045df65c9938f8e79b73e500abd620a3c393a6e
@@ -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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
50
+
51
+ # Initializes the CodeQL tools for scanning.
52
+ - name: Initialize CodeQL
53
+ uses: github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
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@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
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@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22
+ - name: "Dependency Review"
23
+ uses: actions/dependency-review-action@4081bf99e2866ebe428fc0477b69eb4fcda7220a # v4.4.0
@@ -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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@46ca53beb334a2329bcd0e46a694816a6ae6d173 # v1.201.0
29
+ with:
30
+ rubygems: latest
31
+ bundler: latest
32
+ bundler-cache: true
33
+ - run: bundle exec fasterer
@@ -15,5 +15,10 @@ jobs:
15
15
  runs-on: ubuntu-latest
16
16
 
17
17
  steps:
18
- - uses: actions/checkout@v3
19
- - uses: bewuethr/mdl-action@v1.1.2
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24
+ - uses: bewuethr/mdl-action@e9b51f7652f37098e81a6eb4f6361fa042379ab4 # v1.2.0
@@ -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.0", "3.1", "3.2", "head"]
20
- activesupport: ["6.1", "7.0", "main"]
22
+ ruby: ["3.2", "3.3", "head"]
23
+ activesupport: ["7.1", "7.2", "8.0", "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
- - uses: actions/checkout@v3
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
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@46ca53beb334a2329bcd0e46a694816a6ae6d173 # v1.201.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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
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@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
75
+ with:
76
+ sarif_file: results.sarif
data/.rubocop.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  AllCops:
2
2
  NewCops: enable
3
3
  SuggestExtensions: false
4
- TargetRubyVersion: 3.0
4
+ TargetRubyVersion: 3.2
5
5
 
6
6
  Style/WordArray:
7
7
  Enabled: true
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.2.2
1
+ 3.3.6
data/.standard.yml CHANGED
@@ -1,4 +1,4 @@
1
- ruby_version: 3.0.0
1
+ ruby_version: 3.2.0
2
2
 
3
3
  ignore:
4
4
  - 'lib/eve_online/esi/base.rb':
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.46.0
4
+
5
+ * Rails 8.0
6
+
7
+ ## v0.45.0
8
+
9
+ * Rails 7.1 and 7.2
10
+ * Ruby 3.3
11
+ * Drop Ruby 3.0
12
+ * Drop Ruby 3.1
13
+ * Drop Rails 6.1
14
+ * Drop Rails 7.0
15
+
3
16
  ## v0.44.0
4
17
 
5
18
  * Update `faraday` to `>= 2.3.0`
data/Gemfile.lock CHANGED
@@ -1,133 +1,158 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eve_online (0.44.0)
5
- activesupport (>= 6.1.0)
4
+ eve_online (0.46.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.0.5)
12
- concurrent-ruby (~> 1.0, >= 1.0.2)
11
+ activesupport (8.0.0)
12
+ base64
13
+ benchmark (>= 0.3)
14
+ bigdecimal
15
+ concurrent-ruby (~> 1.0, >= 1.3.1)
16
+ connection_pool (>= 2.2.5)
17
+ drb
13
18
  i18n (>= 1.6, < 2)
19
+ logger (>= 1.4.2)
14
20
  minitest (>= 5.1)
15
- tzinfo (~> 2.0)
16
- addressable (2.8.4)
17
- public_suffix (>= 2.0.2, < 6.0)
21
+ securerandom (>= 0.3)
22
+ tzinfo (~> 2.0, >= 2.0.5)
23
+ uri (>= 0.13.1)
24
+ addressable (2.8.7)
25
+ public_suffix (>= 2.0.2, < 7.0)
18
26
  ast (2.4.2)
19
27
  awesome_print (1.9.2)
28
+ base64 (0.2.0)
29
+ benchmark (0.4.0)
30
+ bigdecimal (3.1.8)
20
31
  coderay (1.1.3)
21
- colorize (0.8.1)
22
- concurrent-ruby (1.2.2)
23
- crack (0.4.5)
32
+ concurrent-ruby (1.3.4)
33
+ connection_pool (2.4.1)
34
+ crack (1.0.0)
35
+ bigdecimal
24
36
  rexml
25
- diff-lcs (1.5.0)
26
- docile (1.4.0)
27
- faraday (2.7.6)
28
- faraday-net_http (>= 2.0, < 3.1)
29
- ruby2_keywords (>= 0.0.4)
30
- faraday-net_http (3.0.2)
31
- fasterer (0.10.1)
32
- colorize (~> 0.7)
37
+ diff-lcs (1.5.1)
38
+ docile (1.4.1)
39
+ drb (2.2.1)
40
+ faraday (2.12.0)
41
+ faraday-net_http (>= 2.0, < 3.4)
42
+ json
43
+ logger
44
+ faraday-net_http (3.3.0)
45
+ net-http
46
+ fasterer (0.11.0)
33
47
  ruby_parser (>= 3.19.1)
34
- hashdiff (1.0.1)
35
- i18n (1.14.1)
48
+ hashdiff (1.1.1)
49
+ i18n (1.14.6)
36
50
  concurrent-ruby (~> 1.0)
37
- json (2.6.3)
51
+ json (2.8.1)
38
52
  language_server-protocol (3.17.0.3)
39
- lint_roller (1.0.0)
40
- method_source (1.0.0)
41
- mini_portile2 (2.8.2)
42
- minitest (5.18.1)
43
- nokogiri (1.15.2)
53
+ lint_roller (1.1.0)
54
+ logger (1.6.1)
55
+ method_source (1.1.0)
56
+ mini_portile2 (2.8.7)
57
+ minitest (5.25.1)
58
+ net-http (0.5.0)
59
+ uri
60
+ nokogiri (1.16.7)
44
61
  mini_portile2 (~> 2.8.2)
45
62
  racc (~> 1.4)
46
- nokogiri (1.15.2-arm64-darwin)
63
+ nokogiri (1.16.7-aarch64-linux)
47
64
  racc (~> 1.4)
48
- nokogiri (1.15.2-x86_64-darwin)
65
+ nokogiri (1.16.7-arm64-darwin)
49
66
  racc (~> 1.4)
50
- parallel (1.23.0)
51
- parser (3.2.2.3)
67
+ nokogiri (1.16.7-x86_64-darwin)
68
+ racc (~> 1.4)
69
+ nokogiri (1.16.7-x86_64-linux)
70
+ racc (~> 1.4)
71
+ parallel (1.26.3)
72
+ parser (3.3.6.0)
52
73
  ast (~> 2.4.1)
53
74
  racc
54
75
  pry (0.14.2)
55
76
  coderay (~> 1.1)
56
77
  method_source (~> 1.0)
57
- public_suffix (5.0.1)
58
- racc (1.7.1)
78
+ public_suffix (6.0.1)
79
+ racc (1.8.1)
59
80
  rainbow (3.1.1)
60
- rake (13.0.6)
61
- regexp_parser (2.8.1)
62
- rexml (3.2.5)
63
- rspec (3.12.0)
64
- rspec-core (~> 3.12.0)
65
- rspec-expectations (~> 3.12.0)
66
- rspec-mocks (~> 3.12.0)
67
- rspec-core (3.12.2)
68
- rspec-support (~> 3.12.0)
69
- rspec-expectations (3.12.3)
81
+ rake (13.2.1)
82
+ regexp_parser (2.9.2)
83
+ rexml (3.3.9)
84
+ rspec (3.13.0)
85
+ rspec-core (~> 3.13.0)
86
+ rspec-expectations (~> 3.13.0)
87
+ rspec-mocks (~> 3.13.0)
88
+ rspec-core (3.13.2)
89
+ rspec-support (~> 3.13.0)
90
+ rspec-expectations (3.13.3)
70
91
  diff-lcs (>= 1.2.0, < 2.0)
71
- rspec-support (~> 3.12.0)
72
- rspec-its (1.3.0)
73
- rspec-core (>= 3.0.0)
74
- rspec-expectations (>= 3.0.0)
75
- rspec-mocks (3.12.5)
92
+ rspec-support (~> 3.13.0)
93
+ rspec-its (2.0.0)
94
+ rspec-core (>= 3.13.0)
95
+ rspec-expectations (>= 3.13.0)
96
+ rspec-mocks (3.13.2)
76
97
  diff-lcs (>= 1.2.0, < 2.0)
77
- rspec-support (~> 3.12.0)
78
- rspec-support (3.12.0)
79
- rubocop (1.52.1)
98
+ rspec-support (~> 3.13.0)
99
+ rspec-support (3.13.1)
100
+ rubocop (1.66.1)
80
101
  json (~> 2.3)
102
+ language_server-protocol (>= 3.17.0)
81
103
  parallel (~> 1.10)
82
- parser (>= 3.2.2.3)
104
+ parser (>= 3.3.0.2)
83
105
  rainbow (>= 2.2.2, < 4.0)
84
- regexp_parser (>= 1.8, < 3.0)
85
- rexml (>= 3.2.5, < 4.0)
86
- rubocop-ast (>= 1.28.0, < 2.0)
106
+ regexp_parser (>= 2.4, < 3.0)
107
+ rubocop-ast (>= 1.32.2, < 2.0)
87
108
  ruby-progressbar (~> 1.7)
88
109
  unicode-display_width (>= 2.4.0, < 3.0)
89
- rubocop-ast (1.29.0)
90
- parser (>= 3.2.1.0)
91
- rubocop-performance (1.18.0)
92
- rubocop (>= 1.7.0, < 2.0)
93
- rubocop-ast (>= 0.4.0)
110
+ rubocop-ast (1.34.1)
111
+ parser (>= 3.3.1.0)
112
+ rubocop-performance (1.22.1)
113
+ rubocop (>= 1.48.1, < 2.0)
114
+ rubocop-ast (>= 1.31.1, < 2.0)
94
115
  ruby-progressbar (1.13.0)
95
- ruby2_keywords (0.0.5)
96
- ruby_parser (3.20.2)
116
+ ruby_parser (3.21.1)
117
+ racc (~> 1.5)
97
118
  sexp_processor (~> 4.16)
98
- sexp_processor (4.17.0)
119
+ securerandom (0.3.1)
120
+ sexp_processor (4.17.2)
99
121
  simplecov (0.22.0)
100
122
  docile (~> 1.1)
101
123
  simplecov-html (~> 0.11)
102
124
  simplecov_json_formatter (~> 0.1)
103
- simplecov-html (0.12.3)
125
+ simplecov-html (0.13.1)
104
126
  simplecov_json_formatter (0.1.4)
105
- standard (1.29.0)
127
+ standard (1.41.1)
106
128
  language_server-protocol (~> 3.17.0.2)
107
129
  lint_roller (~> 1.0)
108
- rubocop (~> 1.52.0)
130
+ rubocop (~> 1.66.0)
109
131
  standard-custom (~> 1.0.0)
110
- standard-performance (~> 1.1.0)
111
- standard-custom (1.0.1)
112
- lint_roller (~> 1.0)
113
- standard-performance (1.1.0)
132
+ standard-performance (~> 1.5)
133
+ standard-custom (1.0.2)
114
134
  lint_roller (~> 1.0)
115
- rubocop-performance (~> 1.18.0)
135
+ rubocop (~> 1.50)
136
+ standard-performance (1.5.0)
137
+ lint_roller (~> 1.1)
138
+ rubocop-performance (~> 1.22.0)
116
139
  tzinfo (2.0.6)
117
140
  concurrent-ruby (~> 1.0)
118
- unicode-display_width (2.4.2)
119
- vcr (6.1.0)
120
- webmock (3.18.1)
141
+ unicode-display_width (2.6.0)
142
+ uri (1.0.1)
143
+ vcr (6.3.1)
144
+ base64
145
+ webmock (3.24.0)
121
146
  addressable (>= 2.8.0)
122
147
  crack (>= 0.3.2)
123
148
  hashdiff (>= 0.4.0, < 2.0.0)
124
149
 
125
150
  PLATFORMS
126
- arm64-darwin-21
151
+ aarch64-linux
152
+ arm64-darwin
127
153
  ruby
128
- x86_64-darwin-19
129
- x86_64-darwin-20
130
- x86_64-darwin-21
154
+ x86_64-darwin
155
+ x86_64-linux
131
156
 
132
157
  DEPENDENCIES
133
158
  awesome_print
@@ -145,4 +170,4 @@ DEPENDENCIES
145
170
  webmock
146
171
 
147
172
  BUNDLED WITH
148
- 2.4.14
173
+ 2.5.23
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2023 Igor Zubkov
3
+ Copyright (c) 2015-2024 Ihor Zubkov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -47,14 +47,14 @@ 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
- * 6.1
57
- * 7.0
55
+ * 7.1
56
+ * 7.2
57
+ * 8.0
58
58
  * main
59
59
 
60
60
  ## Usage examples
@@ -3091,7 +3091,7 @@ Issue reports and pull requests are welcome on GitHub at <https://github.com/eve
3091
3091
 
3092
3092
  ## Author
3093
3093
 
3094
- * Igor Zubkov (@biow0lf)
3094
+ * Ihor Zubkov (@biow0lf)
3095
3095
 
3096
3096
  ## Contributors
3097
3097
 
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 = ["Igor Zubkov"]
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.0"
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", ">= 6.1.0"
39
+ spec.add_runtime_dependency "activesupport", ">= 7.1.0"
40
40
  end
@@ -1,4 +1,4 @@
1
- # This file was generated by Appraisal
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", "~> 6.1.0"
10
+ gem "activesupport", "~> 7.1.0"
11
11
 
12
12
  gemspec path: "../"
@@ -1,4 +1,4 @@
1
- # This file was generated by Appraisal
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", "~> 7.0.0"
10
+ gem "activesupport", "~> 7.2.0"
11
11
 
12
12
  gemspec path: "../"
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "nokogiri"
6
+ gem "awesome_print", require: "ap"
7
+ gem "pry"
8
+ gem "standard", require: false
9
+ gem "fasterer", require: false
10
+ gem "activesupport", "~> 8.0.0"
11
+
12
+ gemspec path: "../"
@@ -1,4 +1,4 @@
1
- # This file was generated by Appraisal
1
+ # frozen_string_literal: true
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EveOnline
4
- VERSION = Gem::Version.new("0.44.0")
4
+ VERSION = Gem::Version.new("0.46.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.44.0
4
+ version: 0.46.0
5
5
  platform: ruby
6
6
  authors:
7
- - Igor Zubkov
7
+ - Ihor Zubkov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-18 00:00:00.000000000 Z
11
+ date: 2024-11-08 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: 6.1.0
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: 6.1.0
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,9 @@ files:
160
164
  - README.md
161
165
  - Rakefile
162
166
  - eve_online.gemspec
163
- - gemfiles/activesupport_6.1.gemfile
164
- - gemfiles/activesupport_7.0.gemfile
167
+ - gemfiles/activesupport_7.1.gemfile
168
+ - gemfiles/activesupport_7.2.gemfile
169
+ - gemfiles/activesupport_8.0.gemfile
165
170
  - gemfiles/activesupport_main.gemfile
166
171
  - lib/eve_online.rb
167
172
  - lib/eve_online/esi/alliance.rb
@@ -373,14 +378,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
373
378
  requirements:
374
379
  - - ">="
375
380
  - !ruby/object:Gem::Version
376
- version: '3.0'
381
+ version: '3.2'
377
382
  required_rubygems_version: !ruby/object:Gem::Requirement
378
383
  requirements:
379
384
  - - ">="
380
385
  - !ruby/object:Gem::Version
381
386
  version: '0'
382
387
  requirements: []
383
- rubygems_version: 3.4.14
388
+ rubygems_version: 3.5.23
384
389
  signing_key:
385
390
  specification_version: 4
386
391
  summary: EveOnline ESI API