fudo3 0.1.1 → 0.2.2
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 +4 -4
- data/.circleci/config.yml +101 -0
- data/.github/dependabot.yml +8 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.rubocop.yml +20 -0
- data/.ruby-version +1 -0
- data/.travis.yml +1 -1
- data/CHANGELOG.md +20 -0
- data/Gemfile +3 -4
- data/Gemfile.lock +54 -15
- data/README.md +9 -1
- data/Rakefile +5 -3
- data/bin/console +4 -3
- data/fudo3.gemspec +20 -9
- data/lib/fudo3/version.rb +3 -1
- data/lib/fudo3.rb +6 -4
- metadata +123 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a8447aa8011540e5c0177aed77e67383742720a75549c2d929dd3a99e6779e6
|
4
|
+
data.tar.gz: 1740c70813b0d302f9e283b346fdf3c227e938400bf9c760dbf17e0b11d60cec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8eb76d53332931e0e0cc90d49d7c8945459c17222426d5834c7ba3db82a19d140ef5703a8caa793849680912f03267a704dd8317ed84026b9dd98ff7181308a1
|
7
|
+
data.tar.gz: 96f889b6271d28bb245fecbb31bcb93be8afdc471a7fecf83dd880c1d916f41ba20fd2cf87959cf1519197835fedace3305c1a3a3ceceec0a0fbe7f6a1d08bc5
|
@@ -0,0 +1,101 @@
|
|
1
|
+
version: 2
|
2
|
+
jobs:
|
3
|
+
build:
|
4
|
+
parallelism: 3
|
5
|
+
docker:
|
6
|
+
- image: circleci/ruby:2.7.3
|
7
|
+
environment:
|
8
|
+
BUNDLE_JOBS: 3
|
9
|
+
BUNDLE_RETRY: 3
|
10
|
+
BUNDLE_PATH: vendor/bundle
|
11
|
+
|
12
|
+
steps:
|
13
|
+
- checkout
|
14
|
+
|
15
|
+
- run:
|
16
|
+
name: install Bundler
|
17
|
+
command: |
|
18
|
+
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
|
19
|
+
source $BASH_ENV
|
20
|
+
gem install bundler
|
21
|
+
|
22
|
+
- run:
|
23
|
+
name: Which bundler?
|
24
|
+
command: bundle -v
|
25
|
+
|
26
|
+
- restore_cache:
|
27
|
+
keys:
|
28
|
+
- gem-sample-{{ checksum "Gemfile.lock" }}
|
29
|
+
- gem-sample-
|
30
|
+
|
31
|
+
- run:
|
32
|
+
name: Bundle Install
|
33
|
+
command: bundle check --path vendor/bundle || bundle install --deployment
|
34
|
+
|
35
|
+
- save_cache:
|
36
|
+
key: gem-sample-{{ checksum "Gemfile.lock" }}
|
37
|
+
paths:
|
38
|
+
- vendor/bundle
|
39
|
+
|
40
|
+
- run:
|
41
|
+
name: run rubocop
|
42
|
+
command: |
|
43
|
+
bundle exec rubocop
|
44
|
+
- run:
|
45
|
+
name: Run rspec in parallel
|
46
|
+
command: |
|
47
|
+
bundle exec rspec --profile 10 \
|
48
|
+
--format RspecJunitFormatter \
|
49
|
+
--out test_results/rspec.xml \
|
50
|
+
--format progress \
|
51
|
+
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
|
52
|
+
- store_test_results:
|
53
|
+
path: test_results
|
54
|
+
- store_artifacts:
|
55
|
+
path: test_results
|
56
|
+
destination: test-results
|
57
|
+
- store_artifacts:
|
58
|
+
path: coverage
|
59
|
+
destination: coverage-results
|
60
|
+
deploy:
|
61
|
+
docker:
|
62
|
+
- image: circleci/ruby:2.7.3
|
63
|
+
|
64
|
+
steps:
|
65
|
+
- checkout
|
66
|
+
|
67
|
+
- run:
|
68
|
+
name: install Bundler
|
69
|
+
command: |
|
70
|
+
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
|
71
|
+
source $BASH_ENV
|
72
|
+
gem install bundler
|
73
|
+
- run:
|
74
|
+
name: Which bundler?
|
75
|
+
command: bundle -v
|
76
|
+
|
77
|
+
- restore_cache:
|
78
|
+
keys:
|
79
|
+
- gem-deploy-{{ checksum "Gemfile.lock" }}
|
80
|
+
- gem-deploy-
|
81
|
+
|
82
|
+
- run:
|
83
|
+
name: Bundle Install
|
84
|
+
command: bundle check --path vendor/bundle || bundle install
|
85
|
+
|
86
|
+
- save_cache:
|
87
|
+
key: gem-deploy-{{ checksum "Gemfile.lock" }}
|
88
|
+
paths:
|
89
|
+
- vendor/bundle
|
90
|
+
|
91
|
+
workflows:
|
92
|
+
version: 2
|
93
|
+
build-and-deploy:
|
94
|
+
jobs:
|
95
|
+
- build
|
96
|
+
- deploy:
|
97
|
+
requires:
|
98
|
+
- build
|
99
|
+
filters:
|
100
|
+
branches:
|
101
|
+
only: master
|
@@ -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
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require:
|
2
|
+
- rubocop-rake
|
3
|
+
- rubocop-rspec
|
4
|
+
|
5
|
+
AllCops:
|
6
|
+
TargetRubyVersion: 2.7.3
|
7
|
+
|
8
|
+
Style/AsciiComments:
|
9
|
+
Enabled: false
|
10
|
+
|
11
|
+
Style/Documentation:
|
12
|
+
Enabled: false
|
13
|
+
|
14
|
+
Naming/MethodParameterName:
|
15
|
+
MinNameLength: 2
|
16
|
+
|
17
|
+
Metrics/BlockLength:
|
18
|
+
Exclude:
|
19
|
+
- 'fudo3.gemspec'
|
20
|
+
- 'spec/**/*'
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.3
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,20 @@
|
|
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)
|
8
|
+
|
9
|
+
* Bump rake from 13.0.3 to 13.0.6 ([cb49fe3](https://github.com/yposi/fudo3/commit/cb49fe3))
|
10
|
+
* Bump rubocop from 1.14.0 to 1.24.0 ([169b2b5](https://github.com/yposi/fudo3/commit/169b2b5))
|
11
|
+
* Bump rubocop-rake from 0.5.1 to 0.6.0 ([3b13ff8](https://github.com/yposi/fudo3/commit/3b13ff8))
|
12
|
+
* Bump rubocop-rspec from 2.3.0 to 2.7.0 ([07c7f59](https://github.com/yposi/fudo3/commit/07c7f59))
|
13
|
+
|
14
|
+
## [0.2.0](https://github.com/yposi/fudo3/compare/v0.1.2...v0.2.0) (2021-05-07)
|
15
|
+
|
16
|
+
## [0.1.2](https://github.com/yposi/fudo3/compare/v0.1.1...v0.1.2) (2021-05-07)
|
17
|
+
|
18
|
+
## [0.1.1](https://github.com/yposi/fudo3/compare/v0.1.0...v0.1.1) (2020-09-06)
|
19
|
+
|
20
|
+
# 0.1.0 (2020-08-25)
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,34 +1,73 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fudo3 (0.
|
4
|
+
fudo3 (0.2.2)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
+
ast (2.4.2)
|
9
10
|
diff-lcs (1.4.4)
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
11
|
+
docile (1.3.5)
|
12
|
+
parallel (1.21.0)
|
13
|
+
parser (3.0.3.2)
|
14
|
+
ast (~> 2.4.1)
|
15
|
+
rainbow (3.0.0)
|
16
|
+
rake (13.0.6)
|
17
|
+
regexp_parser (2.2.0)
|
18
|
+
rexml (3.2.5)
|
19
|
+
rspec (3.10.0)
|
20
|
+
rspec-core (~> 3.10.0)
|
21
|
+
rspec-expectations (~> 3.10.0)
|
22
|
+
rspec-mocks (~> 3.10.0)
|
23
|
+
rspec-core (3.10.0)
|
24
|
+
rspec-support (~> 3.10.0)
|
25
|
+
rspec-expectations (3.10.0)
|
18
26
|
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
-
rspec-support (~> 3.
|
20
|
-
rspec-mocks (3.
|
27
|
+
rspec-support (~> 3.10.0)
|
28
|
+
rspec-mocks (3.10.0)
|
21
29
|
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
-
rspec-support (~> 3.
|
23
|
-
rspec-support (3.
|
30
|
+
rspec-support (~> 3.10.0)
|
31
|
+
rspec-support (3.10.0)
|
32
|
+
rspec_junit_formatter (0.4.1)
|
33
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
34
|
+
rubocop (1.24.1)
|
35
|
+
parallel (~> 1.10)
|
36
|
+
parser (>= 3.0.0.0)
|
37
|
+
rainbow (>= 2.2.2, < 4.0)
|
38
|
+
regexp_parser (>= 1.8, < 3.0)
|
39
|
+
rexml
|
40
|
+
rubocop-ast (>= 1.15.1, < 2.0)
|
41
|
+
ruby-progressbar (~> 1.7)
|
42
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
43
|
+
rubocop-ast (1.15.1)
|
44
|
+
parser (>= 3.0.1.1)
|
45
|
+
rubocop-rake (0.6.0)
|
46
|
+
rubocop (~> 1.0)
|
47
|
+
rubocop-rspec (2.7.0)
|
48
|
+
rubocop (~> 1.19)
|
49
|
+
ruby-progressbar (1.11.0)
|
50
|
+
simplecov (0.21.2)
|
51
|
+
docile (~> 1.1)
|
52
|
+
simplecov-html (~> 0.11)
|
53
|
+
simplecov_json_formatter (~> 0.1)
|
54
|
+
simplecov-html (0.12.3)
|
55
|
+
simplecov_json_formatter (0.1.3)
|
56
|
+
unicode-display_width (2.1.0)
|
24
57
|
|
25
58
|
PLATFORMS
|
26
59
|
ruby
|
27
60
|
|
28
61
|
DEPENDENCIES
|
62
|
+
bundler (~> 2.1)
|
29
63
|
fudo3!
|
30
|
-
rake (
|
31
|
-
rspec
|
64
|
+
rake (>= 13.0.3)
|
65
|
+
rspec
|
66
|
+
rspec_junit_formatter
|
67
|
+
rubocop
|
68
|
+
rubocop-rake
|
69
|
+
rubocop-rspec
|
70
|
+
simplecov
|
32
71
|
|
33
72
|
BUNDLED WITH
|
34
73
|
2.1.4
|
data/README.md
CHANGED
@@ -48,8 +48,16 @@ Fudo3.jo_to_tsubo(1)
|
|
48
48
|
=> 0.5010005187875194
|
49
49
|
|
50
50
|
# 平米
|
51
|
-
Fudo3.
|
51
|
+
Fudo3.to_heibei(1, 1)
|
52
52
|
=> 1
|
53
|
+
|
54
|
+
# 坪単価
|
55
|
+
Fudo3.price_per_tsubo(10000, 1000)
|
56
|
+
=> 10.0
|
57
|
+
|
58
|
+
# 平米単価
|
59
|
+
Fudo3.price_per_heibei(10000, 1000)
|
60
|
+
=> 10.0
|
53
61
|
```
|
54
62
|
|
55
63
|
## Contributing
|
data/Rakefile
CHANGED
data/bin/console
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
require
|
4
|
-
require
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'fudo3'
|
5
6
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -10,5 +11,5 @@ require "fudo3"
|
|
10
11
|
# require "pry"
|
11
12
|
# Pry.start
|
12
13
|
|
13
|
-
require
|
14
|
+
require 'irb'
|
14
15
|
IRB.start(__FILE__)
|
data/fudo3.gemspec
CHANGED
@@ -1,19 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require_relative 'lib/fudo3/version'
|
2
4
|
|
3
5
|
Gem::Specification.new do |spec|
|
4
|
-
spec.name =
|
6
|
+
spec.name = 'fudo3'
|
5
7
|
spec.version = Fudo3::VERSION
|
6
|
-
spec.authors = [
|
7
|
-
spec.email = [
|
8
|
+
spec.authors = ['Shuhei Yamashita']
|
9
|
+
spec.email = ['y.shuhei0501@gmail.com']
|
8
10
|
|
9
11
|
spec.summary = '不動産で使用する関数'
|
10
12
|
spec.description = '不動産で使用する関数をまとめたgemです。'
|
11
13
|
spec.homepage = 'https://github.com/yposi/fudo3'
|
12
|
-
spec.license =
|
13
|
-
spec.required_ruby_version = Gem::Requirement.new(
|
14
|
+
spec.license = 'MIT'
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.7')
|
14
16
|
|
15
17
|
if spec.respond_to?(:metadata)
|
16
|
-
spec.metadata[
|
18
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
17
19
|
spec.metadata['source_code_uri'] = 'https://github.com/yposi/fudo3'
|
18
20
|
spec.metadata['changelog_uri'] = 'https://github.com/yposi/fudo3'
|
19
21
|
else
|
@@ -23,10 +25,19 @@ Gem::Specification.new do |spec|
|
|
23
25
|
|
24
26
|
# Specify which files should be added to the gem when it is released.
|
25
27
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
26
|
-
spec.files
|
28
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
27
29
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
28
30
|
end
|
29
|
-
spec.bindir =
|
31
|
+
spec.bindir = 'exe'
|
30
32
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
31
|
-
spec.require_paths = [
|
33
|
+
spec.require_paths = ['lib']
|
34
|
+
|
35
|
+
spec.add_development_dependency 'bundler', '~> 2.1'
|
36
|
+
spec.add_development_dependency 'rake', '>= 13.0.3'
|
37
|
+
spec.add_development_dependency 'rspec'
|
38
|
+
spec.add_development_dependency 'rspec_junit_formatter'
|
39
|
+
spec.add_development_dependency 'rubocop'
|
40
|
+
spec.add_development_dependency 'rubocop-rake'
|
41
|
+
spec.add_development_dependency 'rubocop-rspec'
|
42
|
+
spec.add_development_dependency 'simplecov'
|
32
43
|
end
|
data/lib/fudo3/version.rb
CHANGED
data/lib/fudo3.rb
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'fudo3/version'
|
2
4
|
|
3
5
|
module Fudo3
|
4
6
|
class Error < StandardError; end
|
@@ -52,7 +54,7 @@ module Fudo3
|
|
52
54
|
# @param [Float] length 縦
|
53
55
|
# # @param [Float] width 横
|
54
56
|
# @return [Float] 平米
|
55
|
-
def self.
|
57
|
+
def self.to_heibei(length, width)
|
56
58
|
length.to_f * width.to_f
|
57
59
|
end
|
58
60
|
|
@@ -61,7 +63,7 @@ module Fudo3
|
|
61
63
|
# @param [Float] tsubo 坪
|
62
64
|
# @return [Float] 坪単価
|
63
65
|
def self.price_per_tsubo(price, tsubo)
|
64
|
-
price.to_f / tsubo
|
66
|
+
price.to_f / tsubo
|
65
67
|
end
|
66
68
|
|
67
69
|
# 平米単価
|
@@ -69,6 +71,6 @@ module Fudo3
|
|
69
71
|
# @param [Float] heibei 平米
|
70
72
|
# @return [Float] 平米単価
|
71
73
|
def self.price_per_heibei(price, heibei)
|
72
|
-
price.to_f / heibei
|
74
|
+
price.to_f / heibei
|
73
75
|
end
|
74
76
|
end
|
metadata
CHANGED
@@ -1,15 +1,127 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fudo3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
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:
|
12
|
-
dependencies:
|
11
|
+
date: 2022-01-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.1'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 13.0.3
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 13.0.3
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec_junit_formatter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop-rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
13
125
|
description: 不動産で使用する関数をまとめたgemです。
|
14
126
|
email:
|
15
127
|
- y.shuhei0501@gmail.com
|
@@ -17,10 +129,16 @@ executables: []
|
|
17
129
|
extensions: []
|
18
130
|
extra_rdoc_files: []
|
19
131
|
files:
|
132
|
+
- ".circleci/config.yml"
|
133
|
+
- ".github/dependabot.yml"
|
134
|
+
- ".github/workflows/codeql-analysis.yml"
|
20
135
|
- ".gitignore"
|
21
136
|
- ".rakeTasks"
|
22
137
|
- ".rspec"
|
138
|
+
- ".rubocop.yml"
|
139
|
+
- ".ruby-version"
|
23
140
|
- ".travis.yml"
|
141
|
+
- CHANGELOG.md
|
24
142
|
- CODE_OF_CONDUCT.md
|
25
143
|
- Gemfile
|
26
144
|
- Gemfile.lock
|
@@ -47,14 +165,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
47
165
|
requirements:
|
48
166
|
- - ">="
|
49
167
|
- !ruby/object:Gem::Version
|
50
|
-
version: 2.
|
168
|
+
version: '2.7'
|
51
169
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
170
|
requirements:
|
53
171
|
- - ">="
|
54
172
|
- !ruby/object:Gem::Version
|
55
173
|
version: '0'
|
56
174
|
requirements: []
|
57
|
-
rubygems_version: 3.1.
|
175
|
+
rubygems_version: 3.1.6
|
58
176
|
signing_key:
|
59
177
|
specification_version: 4
|
60
178
|
summary: 不動産で使用する関数
|