fudo3 0.2.0 → 0.2.4

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: 9dbfdaf9f98ab4e984f7af032f020243b28664f4448d797e76d737f28cbda93e
4
- data.tar.gz: e2875facdd5e819c89d461130600fd70a90d7dd2bf0535cb12acf26cc7afcd09
3
+ metadata.gz: 6b36315e89ac8a81be7ffba9c0920681971498d117baa5b7dff291401da9e0b1
4
+ data.tar.gz: 9c3637c6a7cb3d4586bc2cf8f2a3a3fdbdc058ef5d1b0bc3fec19b7eb8257865
5
5
  SHA512:
6
- metadata.gz: 277cc817ef237f23ffdd5fb633546c244c893fe23a72830b8f9e95a4c47fc56632fe4f1465954dd1bbae8b4df51d84460d4129936ad7ad8ed50224c84ec177f1
7
- data.tar.gz: 4bfad4ab0d30bf4b1310329c134760c7fb20e1b748a90685a8574427ff2d3bde9c3346fd9987117a9a558d72d9bd259d8fd4adde1a74dd773b57295ce00307b4
6
+ metadata.gz: 51d3175bda6ecd27f43f4f6aa8fa41c5c2d5e9bdebe1a8cb8ca9aae2507ff19dc0c7e4ad2fe2686555a04ae5f13e69e909841c63931097d84f0faec78ade03f2
7
+ data.tar.gz: 63084621d5869c56b0e24ccbf674b3ee0b019871bd9bf8ccebda99cdf31c4d6e2bc4bb9c340bc7c345f83e6c567bef2171bd8c1ecd1d7258c2beec313e9e73c3
@@ -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 ADDED
@@ -0,0 +1,28 @@
1
+ ## 1.0.0 (2022-01-13)
2
+
3
+ * Bump rspec_junit_formatter from 0.5.0 to 0.5.1 ([15dc3c0](https://github.com/yposi/fudo3/commit/15dc3c0))
4
+
5
+ ## <small>0.2.3 (2022-01-06)</small>
6
+
7
+ * Bump rspec_junit_formatter from 0.4.1 to 0.5.0 ([3a83d24](https://github.com/yposi/fudo3/commit/3a83d24))
8
+
9
+ ## <small>0.2.2 (2022-01-01)</small>
10
+
11
+ * Bump rubocop from 1.24.0 to 1.24.1 ([810c29a](https://github.com/yposi/fudo3/commit/810c29a))
12
+ * Create codeql-analysis.yml ([99016a3](https://github.com/yposi/fudo3/commit/99016a3))
13
+ * fix .rubocop.yml ([16f421e](https://github.com/yposi/fudo3/commit/16f421e))
14
+
15
+ ## <small>0.2.1 (2021-12-29)</small>
16
+
17
+ * Bump rake from 13.0.3 to 13.0.6 ([cb49fe3](https://github.com/yposi/fudo3/commit/cb49fe3))
18
+ * Bump rubocop from 1.14.0 to 1.24.0 ([169b2b5](https://github.com/yposi/fudo3/commit/169b2b5))
19
+ * Bump rubocop-rake from 0.5.1 to 0.6.0 ([3b13ff8](https://github.com/yposi/fudo3/commit/3b13ff8))
20
+ * Bump rubocop-rspec from 2.3.0 to 2.7.0 ([07c7f59](https://github.com/yposi/fudo3/commit/07c7f59))
21
+
22
+ ## <small>[0.2.0](https://github.com/yposi/fudo3/compare/v0.1.2...v0.2.0) (2021-05-07)</small>
23
+
24
+ ## <small>[0.1.2](https://github.com/yposi/fudo3/compare/v0.1.1...v0.1.2) (2021-05-07)</small>
25
+
26
+ ## <small>[0.1.1](https://github.com/yposi/fudo3/compare/v0.1.0...v0.1.1) (2020-09-06)</small>
27
+
28
+ ## <small>0.1.0 (2020-08-25)</small>
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fudo3 (0.2.0)
4
+ fudo3 (0.2.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,18 +9,18 @@ GEM
9
9
  ast (2.4.2)
10
10
  diff-lcs (1.4.4)
11
11
  docile (1.3.5)
12
- parallel (1.20.1)
13
- parser (3.0.1.1)
12
+ parallel (1.21.0)
13
+ parser (3.0.3.2)
14
14
  ast (~> 2.4.1)
15
15
  rainbow (3.0.0)
16
- rake (13.0.3)
17
- regexp_parser (2.1.1)
16
+ rake (13.0.6)
17
+ regexp_parser (2.2.0)
18
18
  rexml (3.2.5)
19
19
  rspec (3.10.0)
20
20
  rspec-core (~> 3.10.0)
21
21
  rspec-expectations (~> 3.10.0)
22
22
  rspec-mocks (~> 3.10.0)
23
- rspec-core (3.10.0)
23
+ rspec-core (3.10.1)
24
24
  rspec-support (~> 3.10.0)
25
25
  rspec-expectations (3.10.0)
26
26
  diff-lcs (>= 1.2.0, < 2.0)
@@ -28,25 +28,24 @@ GEM
28
28
  rspec-mocks (3.10.0)
29
29
  diff-lcs (>= 1.2.0, < 2.0)
30
30
  rspec-support (~> 3.10.0)
31
- rspec-support (3.10.0)
32
- rspec_junit_formatter (0.4.1)
31
+ rspec-support (3.10.3)
32
+ rspec_junit_formatter (0.5.1)
33
33
  rspec-core (>= 2, < 4, != 2.12.0)
34
- rubocop (1.14.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.5.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
- rubocop-ast (1.5.0)
43
+ rubocop-ast (1.15.1)
44
44
  parser (>= 3.0.1.1)
45
- rubocop-rake (0.5.1)
46
- rubocop
47
- rubocop-rspec (2.3.0)
45
+ rubocop-rake (0.6.0)
48
46
  rubocop (~> 1.0)
49
- rubocop-ast (>= 1.1.0)
47
+ rubocop-rspec (2.7.0)
48
+ rubocop (~> 1.19)
50
49
  ruby-progressbar (1.11.0)
51
50
  simplecov (0.21.2)
52
51
  docile (~> 1.1)
@@ -54,7 +53,7 @@ GEM
54
53
  simplecov_json_formatter (~> 0.1)
55
54
  simplecov-html (0.12.3)
56
55
  simplecov_json_formatter (0.1.3)
57
- unicode-display_width (2.0.0)
56
+ unicode-display_width (2.1.0)
58
57
 
59
58
  PLATFORMS
60
59
  ruby
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.0'.freeze
4
+ VERSION = '0.2.4'
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.0
4
+ version: 0.2.4
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-05-06 00:00:00.000000000 Z
11
+ date: 2022-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -131,12 +131,14 @@ 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"
137
138
  - ".rubocop.yml"
138
139
  - ".ruby-version"
139
140
  - ".travis.yml"
141
+ - CHANGELOG.md
140
142
  - CODE_OF_CONDUCT.md
141
143
  - Gemfile
142
144
  - Gemfile.lock