fudo3 0.1.2 → 0.2.3

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: 5bfc739686e09e7b34afd301d3e7c6e4795866d8a6da51e714cd1610e617d674
4
- data.tar.gz: 3b7c61d737ebe4ffcf75628262083ef0d8526baed5636ea22bc7e7dc4460cb7c
3
+ metadata.gz: e6540cfec2ccbe6b77ecc2535a973cd0000e5514c6ba3db0c970934ca1fc55fd
4
+ data.tar.gz: 8d264b076ed170c0d996528f771db10acb10ad936f2415b39d9ea5fe5b2bb03d
5
5
  SHA512:
6
- metadata.gz: 5d2c2c9180cb86d24cea50645d86915554025a8b6d5673a1fd72055b5e2fd4d51a7ec0361b44343e15ac524b6c6a1c0f3be85c5670c8ffad92fec5c999257d1e
7
- data.tar.gz: f517fd58c179edf335dd1362daa1c7fc5b314bb6db4ef653e46f2c1dacbf7d0e7d4ff07735f75f0a9c06ae0c929e3ad58db517dd22612a85a073acaae183eeb4
6
+ metadata.gz: 1c17a74c24775b6df269488f70042eb98eb57255bda745d1320cf5468208bbdd37c0bf1553fc49fa850dad12b73fc462c508508a3d5f6a7ef495c57394e5417b
7
+ data.tar.gz: 99b82501d34c839ff213e8c48f14e389f1c7bc0ea7197ee966ea896a4380ff845eea686393a5a03575c6eb9821b7001ae2407a57b9810f598f513a189f99c77d
data/.circleci/config.yml CHANGED
@@ -3,7 +3,7 @@ jobs:
3
3
  build:
4
4
  parallelism: 3
5
5
  docker:
6
- - image: circleci/ruby:2.6.7
6
+ - image: circleci/ruby:2.7.3
7
7
  environment:
8
8
  BUNDLE_JOBS: 3
9
9
  BUNDLE_RETRY: 3
@@ -59,7 +59,7 @@ jobs:
59
59
  destination: coverage-results
60
60
  deploy:
61
61
  docker:
62
- - image: circleci/ruby:2.6.7
62
+ - image: circleci/ruby:2.7.3
63
63
 
64
64
  steps:
65
65
  - checkout
@@ -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,7 +1,9 @@
1
- require: rubocop-rake
1
+ require:
2
+ - rubocop-rake
3
+ - rubocop-rspec
2
4
 
3
5
  AllCops:
4
- TargetRubyVersion: 2.6.7
6
+ TargetRubyVersion: 2.7.3
5
7
 
6
8
  Style/AsciiComments:
7
9
  Enabled: false
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7.3
data/.travis.yml CHANGED
@@ -2,5 +2,5 @@
2
2
  language: ruby
3
3
  cache: bundler
4
4
  rvm:
5
- - 2.6.7
5
+ - 2.7.3
6
6
  before_install: gem install bundler -v 2.1.4
data/CHANGELOG.md ADDED
@@ -0,0 +1,24 @@
1
+ ## 0.2.3 (2022-01-06)
2
+
3
+ * Bump rspec_junit_formatter from 0.4.1 to 0.5.0 ([3a83d24](https://github.com/yposi/fudo3/commit/3a83d24))
4
+
5
+ ## <small>0.2.2 (2022-01-01)</small>
6
+
7
+ * Bump rubocop from 1.24.0 to 1.24.1 ([810c29a](https://github.com/yposi/fudo3/commit/810c29a))
8
+ * Create codeql-analysis.yml ([99016a3](https://github.com/yposi/fudo3/commit/99016a3))
9
+ * fix .rubocop.yml ([16f421e](https://github.com/yposi/fudo3/commit/16f421e))
10
+
11
+ ## <small>0.2.1 (2021-12-29)</small>
12
+
13
+ * Bump rake from 13.0.3 to 13.0.6 ([cb49fe3](https://github.com/yposi/fudo3/commit/cb49fe3))
14
+ * Bump rubocop from 1.14.0 to 1.24.0 ([169b2b5](https://github.com/yposi/fudo3/commit/169b2b5))
15
+ * Bump rubocop-rake from 0.5.1 to 0.6.0 ([3b13ff8](https://github.com/yposi/fudo3/commit/3b13ff8))
16
+ * Bump rubocop-rspec from 2.3.0 to 2.7.0 ([07c7f59](https://github.com/yposi/fudo3/commit/07c7f59))
17
+
18
+ ## <small>[0.2.0](https://github.com/yposi/fudo3/compare/v0.1.2...v0.2.0) (2021-05-07)</small>
19
+
20
+ ## <small>[0.1.2](https://github.com/yposi/fudo3/compare/v0.1.1...v0.1.2) (2021-05-07)</small>
21
+
22
+ ## <small>[0.1.1](https://github.com/yposi/fudo3/compare/v0.1.0...v0.1.1) (2020-09-06)</small>
23
+
24
+ ## <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.1.2)
4
+ fudo3 (0.2.3)
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.0)
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/fudo3.gemspec CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = '不動産で使用する関数をまとめたgemです。'
13
13
  spec.homepage = 'https://github.com/yposi/fudo3'
14
14
  spec.license = 'MIT'
15
- spec.required_ruby_version = Gem::Requirement.new('>= 2.6')
15
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.7')
16
16
 
17
17
  if spec.respond_to?(:metadata)
18
18
  spec.metadata['homepage_uri'] = spec.homepage
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.1.2'
4
+ VERSION = '0.2.3'
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.1.2
4
+ version: 0.2.3
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-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -131,11 +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"
139
+ - ".ruby-version"
138
140
  - ".travis.yml"
141
+ - CHANGELOG.md
139
142
  - CODE_OF_CONDUCT.md
140
143
  - Gemfile
141
144
  - Gemfile.lock
@@ -162,14 +165,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
162
165
  requirements:
163
166
  - - ">="
164
167
  - !ruby/object:Gem::Version
165
- version: '2.6'
168
+ version: '2.7'
166
169
  required_rubygems_version: !ruby/object:Gem::Requirement
167
170
  requirements:
168
171
  - - ">="
169
172
  - !ruby/object:Gem::Version
170
173
  version: '0'
171
174
  requirements: []
172
- rubygems_version: 3.2.17
175
+ rubygems_version: 3.1.6
173
176
  signing_key:
174
177
  specification_version: 4
175
178
  summary: 不動産で使用する関数