esi-sdk 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53eb50161c8ed5745331ae4c5f5e758b16d26cbdb1a03477c6529ded6f6af0d1
4
- data.tar.gz: 86bf63be109701505da29dc155f7678162614a21fff263fe28e15abd36b78d2b
3
+ metadata.gz: a314fc384b13cadd1631712724440bda744dce38eb738f9c00ace6fd044ecc44
4
+ data.tar.gz: 06ec3d92b468c6263f7e89ed847ccd2a96cc5e2197e958bf4c7abc0f50a0c7d8
5
5
  SHA512:
6
- metadata.gz: a48179dc2da01171f4fc03cb04225b542f96ac6bef91cb27fbbb5a2edddaa5affa7465fb6f737aef2e98523e6e387d0e6592aa2b39f96ae9570847631d2501a7
7
- data.tar.gz: 03f373c97e9d0daaa0bbfef87e739518650aa6733573795235c25d1225d293b27291b8665928a711b2625370544d7183cb9905c7e4236712676d3f2a51fb0cfa
6
+ metadata.gz: f0c2bacf948175755a7623ac0abc64d3823f27d59d3c428aa54e09d39133a91d59f0fa3c2116c3b533d95aa6e6a6f7e9172f3144f39f85f3877cc3eda7193823
7
+ data.tar.gz: cf9d182282f7fd5b95339b6fb4c9638b32e118775b0b47b92105f7a374173f0f24a2dd4e49a0be73987623553c355d3fb1c39fd50345242179d0f0869174b7c5
@@ -0,0 +1,70 @@
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: '40 11 * * 2'
22
+
23
+ jobs:
24
+ analyze:
25
+ name: Analyze
26
+ runs-on: ubuntu-latest
27
+ permissions:
28
+ actions: read
29
+ contents: read
30
+ security-events: write
31
+
32
+ strategy:
33
+ fail-fast: false
34
+ matrix:
35
+ language: [ 'ruby' ]
36
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
37
+ # Learn more about CodeQL language support at https://git.io/codeql-language-support
38
+
39
+ steps:
40
+ - name: Checkout repository
41
+ uses: actions/checkout@v2
42
+
43
+ # Initializes the CodeQL tools for scanning.
44
+ - name: Initialize CodeQL
45
+ uses: github/codeql-action/init@v1
46
+ with:
47
+ languages: ${{ matrix.language }}
48
+ # If you wish to specify custom queries, you can do so here or in a config file.
49
+ # By default, queries listed here will override any specified in a config file.
50
+ # Prefix the list here with "+" to use these queries and those in the config file.
51
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
52
+
53
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
+ # If this step fails, then you should remove it and run the build manually (see below)
55
+ - name: Autobuild
56
+ uses: github/codeql-action/autobuild@v1
57
+
58
+ # ℹ️ Command-line programs to run using the OS shell.
59
+ # 📚 https://git.io/JvXDl
60
+
61
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
62
+ # and modify them (or add more) to build your code if your project
63
+ # uses a compiled language
64
+
65
+ #- run: |
66
+ # make bootstrap
67
+ # make release
68
+
69
+ - name: Perform CodeQL Analysis
70
+ uses: github/codeql-action/analyze@v1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # ESI SDK Changelog
2
2
 
3
+ ## [3.0.1](https://github.com/bokoboshahni/esi-sdk-ruby/compare/v3.0.0...v3.0.1) (2022-01-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * code style for version bump ([d2ea8a4](https://github.com/bokoboshahni/esi-sdk-ruby/commit/d2ea8a431ecfe9bea494ff50a760b8db18d01d6e))
9
+
3
10
  # [3.0.0](https://github.com/bokoboshahni/esi-sdk-ruby/compare/v2.1.3...v3.0.0) (2022-01-26)
4
11
 
5
12
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- esi-sdk (3.0.0)
4
+ esi-sdk (3.0.1)
5
5
  oj (~> 3.13)
6
6
  retriable (~> 3.1)
7
7
  typhoeus (~> 1.4)
data/Rakefile CHANGED
@@ -19,7 +19,7 @@ task :set_version do
19
19
  version_file = File.join(File.dirname(__FILE__), 'lib/esi/version.rb')
20
20
  version_content = File.read(version_file)
21
21
  new_version = ENV['VERSION']
22
- new_content = version_content.gsub(/VERSION = '.+'/m, "VERSION = \"#{new_version}\"")
22
+ new_content = version_content.gsub(/VERSION = '.+'/m, "VERSION = '#{new_version}'")
23
23
  File.write('lib/esi/version.rb', new_content)
24
24
  end
25
25
 
data/lib/esi/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ESI
4
- VERSION = "3.0.0"
4
+ VERSION = '3.0.1'
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: esi-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bokobo Shahni
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2022-01-26 00:00:00.000000000 Z
@@ -68,6 +68,7 @@ files:
68
68
  - ".github/PULL_REQUEST_TEMPLATE.md"
69
69
  - ".github/dependabot.yml"
70
70
  - ".github/workflows/build.yml"
71
+ - ".github/workflows/codeql-analysis.yml"
71
72
  - ".gitignore"
72
73
  - ".rspec"
73
74
  - ".rubocop.yml"
@@ -136,7 +137,7 @@ metadata:
136
137
  homepage_uri: https://github.com/bokoboshahni/esi-sdk
137
138
  source_code_uri: https://github.com/bokoboshahni/esi-sdk
138
139
  changelog_uri: https://github.com/bokoboshahni/blob/main/CHANGELOG.md
139
- post_install_message:
140
+ post_install_message:
140
141
  rdoc_options: []
141
142
  require_paths:
142
143
  - lib
@@ -152,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
153
  version: '0'
153
154
  requirements: []
154
155
  rubygems_version: 3.2.22
155
- signing_key:
156
+ signing_key:
156
157
  specification_version: 4
157
158
  summary: API client for the EVE Swagger Interface (ESI)
158
159
  test_files: []