syamei 0.1.3 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 647a67c428fa7c6a6050b7dfffa08c82c42186853d2285e0d23f9f04e7597065
4
- data.tar.gz: 2f3cbf5d8d819cc4c647d7b29dbecb23ec470434677318b657b4229c61a09fbb
3
+ metadata.gz: c11a57bf64993fb6c648fc80d04b6c179da93345dfaa61cf788a3d2e41046063
4
+ data.tar.gz: 3b0a2e8e4653c8415ddf2cdd206b005a3fcf9b1002b6bf6dc515844637a0783b
5
5
  SHA512:
6
- metadata.gz: 6ff1b2481d5817a5fae8a772f32ef4fec32ff12afc16fb9155d85eb5eef6a7ca84a57d1f53b3089f49a0859ede94d37f667adb0d4705d8e88ba1bb1c008eb87d
7
- data.tar.gz: 88ad59621593753adcb13bea8f224a8e06b1f626361111777d96e4a0fef6a5cb6d3751e53e6e37f3e9a24037ac38acb9578c56fed7b82cb1688f3bc29cd21eaa
6
+ metadata.gz: 3817b3cdb62d8e5b0d54b15d1e5660c8bd114cc107f101ad39225b592f6db06e8a7d6bf9241bba7b8c103dc43109d3caf56f70b07c2066ee2fcc75e042b81a61
7
+ data.tar.gz: 377634ba14e725dbb491652e451068090b7eefd24e6c9e771c4c5947cfb027e6dc459f7b2c3e18605b8b3519b3996666b517f6183a83447307b386173193e90b
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.6
6
+ - image: circleci/ruby:2.7
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.6
62
+ - image: circleci/ruby:2.6.7
63
63
 
64
64
  steps:
65
65
  - checkout
@@ -0,0 +1,17 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "20:00"
8
+ open-pull-requests-limit: 10
9
+ ignore:
10
+ - dependency-name: rubocop
11
+ versions:
12
+ - 1.10.0
13
+ - 1.11.0
14
+ - 1.12.0
15
+ - 1.12.1
16
+ - 1.9.0
17
+ - 1.9.1
@@ -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: '38 23 * * 5'
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
@@ -5,7 +5,7 @@ AllCops:
5
5
  - "vendor/**/*"
6
6
  - "bin/*"
7
7
  DisplayCopNames: true
8
- TargetRubyVersion: 2.6.6
8
+ TargetRubyVersion: 2.7.3
9
9
 
10
10
  Style/AsciiComments:
11
11
  Enabled: false
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.6
1
+ 2.7.3
data/.travis.yml CHANGED
@@ -3,5 +3,5 @@ sudo: false
3
3
  language: ruby
4
4
  cache: bundler
5
5
  rvm:
6
- - 2.6.3
7
- before_install: gem install bundler -v 1.17.2
6
+ - 2.7.3
7
+ before_install: gem install bundler
data/CHANGELOG.md ADDED
@@ -0,0 +1,55 @@
1
+ ## 0.2.2 (2022-01-06)
2
+
3
+ * Bump rspec_junit_formatter from 0.4.1 to 0.5.0 ([b8958ba](https://github.com/yposi/syamei/commit/b8958ba))
4
+ * Create codeql-analysis.yml ([7c2e54b](https://github.com/yposi/syamei/commit/7c2e54b))
5
+
6
+ ## <small>0.2.1 (2021-12-29)</small>
7
+
8
+ * Bump rake from 13.0.3 to 13.0.6 ([0d072e0](https://github.com/yposi/syamei/commit/0d072e0))
9
+ * circleci image's version up ([eb94d5c](https://github.com/yposi/syamei/commit/eb94d5c))
10
+
11
+ ## <small>0.2.0 (2021-05-06)</small>
12
+
13
+ * ruby version up 2.6 to 2.7 ([de3ae55](https://github.com/yposi/syamei/commit/de3ae55))
14
+ * version up 0.2.0 ([dcedaea](https://github.com/yposi/syamei/commit/dcedaea))
15
+
16
+ ## <small>0.1.4 (2021-05-06)</small>
17
+
18
+ * add rspec ([7f2598a](https://github.com/yposi/syamei/commit/7f2598a))
19
+ * Bump rake from 13.0.1 to 13.0.3 ([0d72f84](https://github.com/yposi/syamei/commit/0d72f84))
20
+ * Bump rspec from 3.9.0 to 3.10.0 ([9e4c714](https://github.com/yposi/syamei/commit/9e4c714))
21
+ * Bump rubocop-rspec from 1.42.0 to 1.44.1 ([695b6c0](https://github.com/yposi/syamei/commit/695b6c0))
22
+ * Bump simplecov from 0.18.5 to 0.21.2 ([375f478](https://github.com/yposi/syamei/commit/375f478))
23
+ * delete .idea ([cf8a071](https://github.com/yposi/syamei/commit/cf8a071))
24
+ * delete rspec version specification ([b9c903c](https://github.com/yposi/syamei/commit/b9c903c))
25
+ * delete rubocop version specification ([31b91f9](https://github.com/yposi/syamei/commit/31b91f9))
26
+ * fix Gemfile.lock ([dccbb14](https://github.com/yposi/syamei/commit/dccbb14))
27
+ * fix rubocop ([f48db49](https://github.com/yposi/syamei/commit/f48db49))
28
+ * ruby version up ([b2e592e](https://github.com/yposi/syamei/commit/b2e592e))
29
+ * Update bundler requirement from ~> 1.17 to ~> 2.2 ([fa98eb7](https://github.com/yposi/syamei/commit/fa98eb7))
30
+ * Upgrade to GitHub-native Dependabot ([6ddc6ea](https://github.com/yposi/syamei/commit/6ddc6ea))
31
+ * version up 0.1.4 ([84a6db5](https://github.com/yposi/syamei/commit/84a6db5))
32
+
33
+
34
+
35
+ ## <small>0.1.3 (2020-07-30)</small>
36
+
37
+ * add methods ([c2ed443](https://github.com/yposi/syamei/commit/c2ed443))
38
+ * add methods ([a235ea5](https://github.com/yposi/syamei/commit/a235ea5))
39
+ * circleci導入 ([f751c3c](https://github.com/yposi/syamei/commit/f751c3c))
40
+ * fix gemspec ([03d1abd](https://github.com/yposi/syamei/commit/03d1abd))
41
+ * fix README ([bc8a0fe](https://github.com/yposi/syamei/commit/bc8a0fe))
42
+ * fix rubocop.yml ([da5864a](https://github.com/yposi/syamei/commit/da5864a))
43
+ * rake version up ([4b75ce9](https://github.com/yposi/syamei/commit/4b75ce9))
44
+ * READMEを更新 ([b9ded2a](https://github.com/yposi/syamei/commit/b9ded2a))
45
+ * remove TODO ([2d798b2](https://github.com/yposi/syamei/commit/2d798b2))
46
+ * run bundle gem ([f3fba71](https://github.com/yposi/syamei/commit/f3fba71))
47
+ * Update README.md ([978c371](https://github.com/yposi/syamei/commit/978c371))
48
+ * version up ([ad252e7](https://github.com/yposi/syamei/commit/ad252e7))
49
+ * version up 0.1.3 ([c215746](https://github.com/yposi/syamei/commit/c215746))
50
+ * データの持ち方を変更 ([18444b3](https://github.com/yposi/syamei/commit/18444b3))
51
+ * 省略文字の実装漏れ修正 ([a343202](https://github.com/yposi/syamei/commit/a343202))
52
+ * 自動化リリース断念 ([8951f7a](https://github.com/yposi/syamei/commit/8951f7a))
53
+
54
+
55
+
data/Gemfile.lock CHANGED
@@ -1,68 +1,71 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- syamei (0.1.3)
4
+ syamei (0.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- ast (2.4.1)
9
+ ast (2.4.2)
10
10
  diff-lcs (1.4.4)
11
- docile (1.3.2)
12
- parallel (1.19.2)
13
- parser (2.7.1.4)
11
+ docile (1.3.5)
12
+ parallel (1.20.1)
13
+ parser (3.0.1.1)
14
14
  ast (~> 2.4.1)
15
15
  rainbow (3.0.0)
16
- rake (13.0.1)
17
- regexp_parser (1.7.1)
18
- rexml (3.2.4)
19
- rspec (3.9.0)
20
- rspec-core (~> 3.9.0)
21
- rspec-expectations (~> 3.9.0)
22
- rspec-mocks (~> 3.9.0)
23
- rspec-core (3.9.2)
24
- rspec-support (~> 3.9.3)
25
- rspec-expectations (3.9.2)
16
+ rake (13.0.6)
17
+ regexp_parser (2.1.1)
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.1)
24
+ rspec-support (~> 3.10.0)
25
+ rspec-expectations (3.10.1)
26
26
  diff-lcs (>= 1.2.0, < 2.0)
27
- rspec-support (~> 3.9.0)
28
- rspec-mocks (3.9.1)
27
+ rspec-support (~> 3.10.0)
28
+ rspec-mocks (3.10.2)
29
29
  diff-lcs (>= 1.2.0, < 2.0)
30
- rspec-support (~> 3.9.0)
31
- rspec-support (3.9.3)
32
- rspec_junit_formatter (0.4.1)
30
+ rspec-support (~> 3.10.0)
31
+ rspec-support (3.10.3)
32
+ rspec_junit_formatter (0.5.0)
33
33
  rspec-core (>= 2, < 4, != 2.12.0)
34
- rubocop (0.88.0)
34
+ rubocop (0.93.1)
35
35
  parallel (~> 1.10)
36
- parser (>= 2.7.1.1)
36
+ parser (>= 2.7.1.5)
37
37
  rainbow (>= 2.2.2, < 4.0)
38
- regexp_parser (>= 1.7)
38
+ regexp_parser (>= 1.8)
39
39
  rexml
40
- rubocop-ast (>= 0.1.0, < 1.0)
40
+ rubocop-ast (>= 0.6.0)
41
41
  ruby-progressbar (~> 1.7)
42
42
  unicode-display_width (>= 1.4.0, < 2.0)
43
- rubocop-ast (0.2.0)
44
- parser (>= 2.7.0.1)
45
- rubocop-rspec (1.42.0)
46
- rubocop (>= 0.87.0)
47
- ruby-progressbar (1.10.1)
48
- simplecov (0.18.5)
43
+ rubocop-ast (1.5.0)
44
+ parser (>= 3.0.1.1)
45
+ rubocop-rspec (1.44.1)
46
+ rubocop (~> 0.87)
47
+ rubocop-ast (>= 0.7.1)
48
+ ruby-progressbar (1.11.0)
49
+ simplecov (0.21.2)
49
50
  docile (~> 1.1)
50
51
  simplecov-html (~> 0.11)
51
- simplecov-html (0.12.2)
52
+ simplecov_json_formatter (~> 0.1)
53
+ simplecov-html (0.12.3)
54
+ simplecov_json_formatter (0.1.3)
52
55
  unicode-display_width (1.7.0)
53
56
 
54
57
  PLATFORMS
55
58
  ruby
56
59
 
57
60
  DEPENDENCIES
58
- bundler (~> 1.17)
61
+ bundler (~> 2.2)
59
62
  rake (>= 12.3.3)
60
- rspec (~> 3.0)
63
+ rspec
61
64
  rspec_junit_formatter
62
- rubocop (~> 0.62)
65
+ rubocop
63
66
  rubocop-rspec
64
67
  simplecov
65
68
  syamei!
66
69
 
67
70
  BUNDLED WITH
68
- 1.17.2
71
+ 2.2.17
@@ -1,3 +1,3 @@
1
1
  module Syamei
2
- VERSION = '0.1.3'.freeze
2
+ VERSION = '0.2.2'.freeze
3
3
  end
data/syamei.gemspec CHANGED
@@ -32,12 +32,13 @@ Gem::Specification.new do |spec|
32
32
  spec.bindir = 'exe'
33
33
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
34
34
  spec.require_paths = ['lib']
35
+ spec.required_ruby_version = '>= 2.7'
35
36
 
36
- spec.add_development_dependency 'bundler', '~> 1.17'
37
+ spec.add_development_dependency 'bundler', '~> 2.2'
37
38
  spec.add_development_dependency 'rake', '>= 12.3.3'
38
- spec.add_development_dependency 'rspec', '~> 3.0'
39
+ spec.add_development_dependency 'rspec'
39
40
  spec.add_development_dependency 'rspec_junit_formatter'
40
- spec.add_development_dependency 'rubocop', '~> 0.62'
41
+ spec.add_development_dependency 'rubocop'
41
42
  spec.add_development_dependency 'rubocop-rspec'
42
43
  spec.add_development_dependency 'simplecov'
43
44
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: syamei
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
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: 2020-07-30 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
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.17'
19
+ version: '2.2'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.17'
26
+ version: '2.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -42,16 +42,16 @@ dependencies:
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '3.0'
47
+ version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '3.0'
54
+ version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec_junit_formatter
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -70,16 +70,16 @@ dependencies:
70
70
  name: rubocop
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '0.62'
75
+ version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: '0.62'
82
+ version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rubocop-rspec
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -116,13 +116,15 @@ extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
118
  - ".circleci/config.yml"
119
+ - ".github/dependabot.yml"
120
+ - ".github/workflows/codeql-analysis.yml"
119
121
  - ".gitignore"
120
- - ".idea/.gitignore"
121
122
  - ".rakeTasks"
122
123
  - ".rspec"
123
124
  - ".rubocop.yml"
124
125
  - ".ruby-version"
125
126
  - ".travis.yml"
127
+ - CHANGELOG.md
126
128
  - CODE_OF_CONDUCT.md
127
129
  - Gemfile
128
130
  - Gemfile.lock
@@ -150,14 +152,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
150
152
  requirements:
151
153
  - - ">="
152
154
  - !ruby/object:Gem::Version
153
- version: '0'
155
+ version: '2.7'
154
156
  required_rubygems_version: !ruby/object:Gem::Requirement
155
157
  requirements:
156
158
  - - ">="
157
159
  - !ruby/object:Gem::Version
158
160
  version: '0'
159
161
  requirements: []
160
- rubygems_version: 3.1.4
162
+ rubygems_version: 3.1.6
161
163
  signing_key:
162
164
  specification_version: 4
163
165
  summary: Cut company name notation.
data/.idea/.gitignore DELETED
@@ -1,2 +0,0 @@
1
- # Default ignored files
2
- /workspace.xml