fudo3 0.2.1 → 0.2.2

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: 1e239ffc2e7a0750c0561e6c5aa069e7bbbff12fea805628e3f8458aefeed262
4
- data.tar.gz: 17e67f0f828c300fda2e175cd8d4622b05d7e55ac9d003f5fda2f8092686ff86
3
+ metadata.gz: 0a8447aa8011540e5c0177aed77e67383742720a75549c2d929dd3a99e6779e6
4
+ data.tar.gz: 1740c70813b0d302f9e283b346fdf3c227e938400bf9c760dbf17e0b11d60cec
5
5
  SHA512:
6
- metadata.gz: a15d0dba24ab972c30acf5da10362fdc9be6060380469023e1f0360f5e36a20421367df9d3180949f03217357c069acbc45e280604ef679f6bf8bd9d6674c89d
7
- data.tar.gz: c108f52da7398c50e110ee556da3476bf450fffe5f4d93aaeb73c8c80890db38604c5de0067fa2432e6c9a90efa5a38bda95ca9196d80cdc66ecf6573f0bd9dd
6
+ metadata.gz: 8eb76d53332931e0e0cc90d49d7c8945459c17222426d5834c7ba3db82a19d140ef5703a8caa793849680912f03267a704dd8317ed84026b9dd98ff7181308a1
7
+ data.tar.gz: 96f889b6271d28bb245fecbb31bcb93be8afdc471a7fecf83dd880c1d916f41ba20fd2cf87959cf1519197835fedace3305c1a3a3ceceec0a0fbe7f6a1d08bc5
@@ -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: [ dev, main ]
17
+ pull_request:
18
+ # The branches below must be a subset of the branches above
19
+ branches: [ dev ]
20
+ schedule:
21
+ - cron: '44 1 * * 1'
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/.rubocop.yml CHANGED
@@ -1,4 +1,6 @@
1
- require: rubocop-rake
1
+ require:
2
+ - rubocop-rake
3
+ - rubocop-rspec
2
4
 
3
5
  AllCops:
4
6
  TargetRubyVersion: 2.7.3
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
- ## 0.2.1**** (2021-12-29)
1
+ ## 0.2.2 (2022-01-01)
2
+
3
+ * Bump rubocop from 1.24.0 to 1.24.1 ([810c29a](https://github.com/yposi/fudo3/commit/810c29a))
4
+ * Create codeql-analysis.yml ([99016a3](https://github.com/yposi/fudo3/commit/99016a3))
5
+ * fix .rubocop.yml ([16f421e](https://github.com/yposi/fudo3/commit/16f421e))
6
+
7
+ ## 0.2.1 (2021-12-29)
2
8
 
3
9
  * Bump rake from 13.0.3 to 13.0.6 ([cb49fe3](https://github.com/yposi/fudo3/commit/cb49fe3))
4
10
  * Bump rubocop from 1.14.0 to 1.24.0 ([169b2b5](https://github.com/yposi/fudo3/commit/169b2b5))
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fudo3 (0.2.1)
4
+ fudo3 (0.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -31,13 +31,13 @@ GEM
31
31
  rspec-support (3.10.0)
32
32
  rspec_junit_formatter (0.4.1)
33
33
  rspec-core (>= 2, < 4, != 2.12.0)
34
- rubocop (1.24.0)
34
+ rubocop (1.24.1)
35
35
  parallel (~> 1.10)
36
36
  parser (>= 3.0.0.0)
37
37
  rainbow (>= 2.2.2, < 4.0)
38
38
  regexp_parser (>= 1.8, < 3.0)
39
39
  rexml
40
- rubocop-ast (>= 1.15.0, < 2.0)
40
+ rubocop-ast (>= 1.15.1, < 2.0)
41
41
  ruby-progressbar (~> 1.7)
42
42
  unicode-display_width (>= 1.4.0, < 3.0)
43
43
  rubocop-ast (1.15.1)
data/lib/fudo3/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fudo3
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fudo3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shuhei Yamashita
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-29 00:00:00.000000000 Z
11
+ date: 2022-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -131,6 +131,7 @@ extra_rdoc_files: []
131
131
  files:
132
132
  - ".circleci/config.yml"
133
133
  - ".github/dependabot.yml"
134
+ - ".github/workflows/codeql-analysis.yml"
134
135
  - ".gitignore"
135
136
  - ".rakeTasks"
136
137
  - ".rspec"