jpostcode 1.0.0.20230101 → 1.0.0.20230301

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +20 -4
  3. data/CHANGELOG.md +42 -0
  4. data/CODE_OF_CONDUCT.md +68 -56
  5. data/Gemfile.lock +17 -14
  6. data/LICENSE.txt +4 -18
  7. data/jpostcode-data/data/json/003.json +3 -3
  8. data/jpostcode-data/data/json/024.json +13 -0
  9. data/jpostcode-data/data/json/103.json +31 -16
  10. data/jpostcode-data/data/json/104.json +21 -21
  11. data/jpostcode-data/data/json/105.json +2 -15
  12. data/jpostcode-data/data/json/107.json +13 -13
  13. data/jpostcode-data/data/json/108.json +13 -0
  14. data/jpostcode-data/data/json/112.json +26 -0
  15. data/jpostcode-data/data/json/130.json +13 -0
  16. data/jpostcode-data/data/json/150.json +3 -3
  17. data/jpostcode-data/data/json/174.json +13 -0
  18. data/jpostcode-data/data/json/192.json +2 -2
  19. data/jpostcode-data/data/json/212.json +19 -6
  20. data/jpostcode-data/data/json/231.json +26 -0
  21. data/jpostcode-data/data/json/248.json +0 -13
  22. data/jpostcode-data/data/json/252.json +13 -0
  23. data/jpostcode-data/data/json/272.json +13 -0
  24. data/jpostcode-data/data/json/330.json +13 -0
  25. data/jpostcode-data/data/json/360.json +3 -3
  26. data/jpostcode-data/data/json/363.json +2 -2
  27. data/jpostcode-data/data/json/373.json +13 -0
  28. data/jpostcode-data/data/json/400.json +13 -0
  29. data/jpostcode-data/data/json/456.json +2 -2
  30. data/jpostcode-data/data/json/500.json +3 -3
  31. data/jpostcode-data/data/json/501.json +13 -0
  32. data/jpostcode-data/data/json/522.json +3 -3
  33. data/jpostcode-data/data/json/540.json +13 -0
  34. data/jpostcode-data/data/json/541.json +26 -13
  35. data/jpostcode-data/data/json/562.json +2 -2
  36. data/jpostcode-data/data/json/581.json +13 -0
  37. data/jpostcode-data/data/json/663.json +13 -0
  38. data/jpostcode-data/data/json/669.json +1 -1
  39. data/jpostcode-data/data/json/690.json +2 -2
  40. data/jpostcode-data/data/json/699.json +0 -13
  41. data/jpostcode-data/data/json/720.json +13 -0
  42. data/jpostcode-data/data/json/729.json +6 -6
  43. data/jpostcode-data/data/json/730.json +0 -13
  44. data/jpostcode-data/data/json/746.json +13 -0
  45. data/jpostcode-data/data/json/783.json +13 -0
  46. data/jpostcode-data/data/json/808.json +2 -2
  47. data/jpostcode-data/data/json/850.json +6 -6
  48. data/jpostcode-data/data/json/879.json +2 -2
  49. data/jpostcode-data/data/json/904.json +13 -0
  50. data/jpostcode-data/data/json/920.json +2 -2
  51. data/jpostcode-data/data/json/933.json +2 -2
  52. data/jpostcode-data/data/json/939.json +41 -13
  53. data/jpostcode-data/data/json/949.json +13 -0
  54. data/jpostcode-data/data/json/950.json +1 -14
  55. data/lib/jpostcode/version.rb +1 -1
  56. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11eaa343c05c55e90cd2feca353b80afd2d63088ca95f1b95686b3e60c3e6683
4
- data.tar.gz: 971144fc8a48298914eeadf39c204223c24597cc4f4370670b6cba33190930dc
3
+ metadata.gz: 3018d826b23ba7250b875d2762a53795d0cb4d4a8bc646000021a5a1a27028ad
4
+ data.tar.gz: e194f85da5fb8615effe2e7f2d688344bac41819409d03beaf9bdcda03222092
5
5
  SHA512:
6
- metadata.gz: 35352b196be941a024d8db0fcb01d1f381211ee00780eacd1cca93137a7fce86325bf47df51da84bafface2272b7a151d96ce30725378967442551e1ec05c50a
7
- data.tar.gz: 9583acd3221db5c3b25595e5431f6603135fa7be1e5768adbca1fdd5e0fe70f554e6bb4655e9f71027206bb6adef00c3e5494d6d97c869e592c168fb0b041aa9
6
+ metadata.gz: 24ad801fe8995c3a8b87eec8e3b11041d2916145c920e4467e392d266e8a9df5d93f9fd3e3bd453883202cc7a17b45491cbb5f48643ef4311d0255ada418807b
7
+ data.tar.gz: 8b574fdf3678f84801334156d4345c4de7d325a84114dcaf12893b4fe70ef96343c9167bd40fdd2ba550d2c1498744a195490dfe4679153a59d7ef71b517a1b6
data/.circleci/config.yml CHANGED
@@ -2,21 +2,27 @@ version: 2.1
2
2
 
3
3
  executors:
4
4
  working_directory: /root/jpostcode-rb
5
+ ruby_3_2:
6
+ docker:
7
+ - image: rubylang/ruby:3.2.0-dev-focal
8
+ auth:
9
+ username: smarthrinc
10
+ password: $DOCKER_HUB_ACCESS_TOKEN
5
11
  ruby_3_1:
6
12
  docker:
7
- - image: rubylang/ruby:3.1.2-focal
13
+ - image: rubylang/ruby:3.1-dev-focal
8
14
  auth:
9
15
  username: smarthrinc
10
16
  password: $DOCKER_HUB_ACCESS_TOKEN
11
17
  ruby_3_0:
12
18
  docker:
13
- - image: rubylang/ruby:3.0.5-focal
19
+ - image: rubylang/ruby:3.0-dev-focal
14
20
  auth:
15
21
  username: smarthrinc
16
22
  password: $DOCKER_HUB_ACCESS_TOKEN
17
23
  ruby_2_7:
18
24
  docker:
19
- - image: rubylang/ruby:2.7.6-bionic
25
+ - image: rubylang/ruby:2.7-dev-bionic
20
26
  auth:
21
27
  username: smarthrinc
22
28
  password: $DOCKER_HUB_ACCESS_TOKEN
@@ -28,7 +34,7 @@ commands:
28
34
  - run:
29
35
  name: Install System Dependencies
30
36
  # https://circleci.com/docs/2.0/custom-images/#required-tools-for-primary-containers
31
- command: apt-get update -y && apt-get install -y ssh git make gcc
37
+ command: apt-get update -y && apt-get install -y ssh
32
38
 
33
39
  submodule_sync:
34
40
  description: "git submodule init & update"
@@ -57,6 +63,14 @@ commands:
57
63
  bundle exec rubocop
58
64
 
59
65
  jobs:
66
+ run_tests_on_ruby_3_2:
67
+ executor: ruby_3_2
68
+ steps:
69
+ - install_system_dependencies
70
+ - checkout
71
+ - submodule_sync
72
+ - bundle_gems
73
+ - run_tests
60
74
  run_tests_on_ruby_3_1:
61
75
  executor: ruby_3_1
62
76
  steps:
@@ -94,6 +108,8 @@ workflows:
94
108
  version: 2
95
109
  test:
96
110
  jobs:
111
+ - run_tests_on_ruby_3_2:
112
+ context: smarthr-dockerhub
97
113
  - run_tests_on_ruby_3_1:
98
114
  context: smarthr-dockerhub
99
115
  - run_tests_on_ruby_3_0:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.0.0.20230201](https://github.com/kufu/jpostcode-rb/tree/v1.0.0.20230201) (2023-02-01)
4
+
5
+ [Full Changelog](https://github.com/kufu/jpostcode-rb/compare/v1.0.0.20230101...v1.0.0.20230201)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - bumpup 202302 [\#375](https://github.com/kufu/jpostcode-rb/pull/375) ([tknzk](https://github.com/tknzk))
10
+ - Bump guard-bundler from 3.0.0 to 3.0.1 [\#374](https://github.com/kufu/jpostcode-rb/pull/374) ([dependabot[bot]](https://github.com/apps/dependabot))
11
+ - Update License and CoC files [\#373](https://github.com/kufu/jpostcode-rb/pull/373) ([kinoppyd](https://github.com/kinoppyd))
12
+ - Bump rubocop from 1.44.0 to 1.44.1 [\#372](https://github.com/kufu/jpostcode-rb/pull/372) ([dependabot[bot]](https://github.com/apps/dependabot))
13
+ - Bump rubocop from 1.43.0 to 1.44.0 [\#371](https://github.com/kufu/jpostcode-rb/pull/371) ([dependabot[bot]](https://github.com/apps/dependabot))
14
+ - Bump regexp\_parser from 2.6.1 to 2.6.2 [\#370](https://github.com/kufu/jpostcode-rb/pull/370) ([dependabot[bot]](https://github.com/apps/dependabot))
15
+ - Bump rubocop-rspec from 2.18.0 to 2.18.1 [\#369](https://github.com/kufu/jpostcode-rb/pull/369) ([dependabot[bot]](https://github.com/apps/dependabot))
16
+ - ci for ruby 3.2 [\#368](https://github.com/kufu/jpostcode-rb/pull/368) ([tknzk](https://github.com/tknzk))
17
+ - Bump rspec-mocks from 3.12.2 to 3.12.3 [\#367](https://github.com/kufu/jpostcode-rb/pull/367) ([dependabot[bot]](https://github.com/apps/dependabot))
18
+ - Bump rubocop-rspec from 2.17.0 to 2.18.0 [\#366](https://github.com/kufu/jpostcode-rb/pull/366) ([dependabot[bot]](https://github.com/apps/dependabot))
19
+ - Bump rubocop-rspec from 2.16.0 to 2.17.0 [\#365](https://github.com/kufu/jpostcode-rb/pull/365) ([dependabot[bot]](https://github.com/apps/dependabot))
20
+ - Bump rubocop from 1.42.0 to 1.43.0 [\#364](https://github.com/kufu/jpostcode-rb/pull/364) ([dependabot[bot]](https://github.com/apps/dependabot))
21
+
22
+ ## [v1.0.0.20230101](https://github.com/kufu/jpostcode-rb/tree/v1.0.0.20230101) (2023-01-10)
23
+
24
+ [Full Changelog](https://github.com/kufu/jpostcode-rb/compare/v1.0.0.20221201...v1.0.0.20230101)
25
+
26
+ **Merged pull requests:**
27
+
28
+ - bumpup 202301 [\#363](https://github.com/kufu/jpostcode-rb/pull/363) ([tknzk](https://github.com/tknzk))
29
+ - install git on circleci image [\#362](https://github.com/kufu/jpostcode-rb/pull/362) ([tknzk](https://github.com/tknzk))
30
+ - Bump pry from 0.14.1 to 0.14.2 [\#361](https://github.com/kufu/jpostcode-rb/pull/361) ([dependabot[bot]](https://github.com/apps/dependabot))
31
+ - Bump listen from 3.7.1 to 3.8.0 [\#360](https://github.com/kufu/jpostcode-rb/pull/360) ([dependabot[bot]](https://github.com/apps/dependabot))
32
+ - Bump rspec-expectations from 3.12.1 to 3.12.2 [\#359](https://github.com/kufu/jpostcode-rb/pull/359) ([dependabot[bot]](https://github.com/apps/dependabot))
33
+ - Bump rspec-mocks from 3.12.1 to 3.12.2 [\#358](https://github.com/kufu/jpostcode-rb/pull/358) ([dependabot[bot]](https://github.com/apps/dependabot))
34
+ - Bump rubocop from 1.41.1 to 1.42.0 [\#354](https://github.com/kufu/jpostcode-rb/pull/354) ([dependabot[bot]](https://github.com/apps/dependabot))
35
+ - Bump rubocop-ast from 1.24.0 to 1.24.1 [\#353](https://github.com/kufu/jpostcode-rb/pull/353) ([dependabot[bot]](https://github.com/apps/dependabot))
36
+ - Bump rubocop-performance from 1.15.1 to 1.15.2 [\#352](https://github.com/kufu/jpostcode-rb/pull/352) ([dependabot[bot]](https://github.com/apps/dependabot))
37
+ - Bump rubocop from 1.41.0 to 1.41.1 [\#351](https://github.com/kufu/jpostcode-rb/pull/351) ([dependabot[bot]](https://github.com/apps/dependabot))
38
+ - Bump rubocop from 1.40.0 to 1.41.0 [\#350](https://github.com/kufu/jpostcode-rb/pull/350) ([dependabot[bot]](https://github.com/apps/dependabot))
39
+ - Bump rspec-expectations from 3.12.0 to 3.12.1 [\#349](https://github.com/kufu/jpostcode-rb/pull/349) ([dependabot[bot]](https://github.com/apps/dependabot))
40
+ - Bump rubocop-rspec from 2.15.0 to 2.16.0 [\#348](https://github.com/kufu/jpostcode-rb/pull/348) ([dependabot[bot]](https://github.com/apps/dependabot))
41
+ - Bump rspec-mocks from 3.12.0 to 3.12.1 [\#347](https://github.com/kufu/jpostcode-rb/pull/347) ([dependabot[bot]](https://github.com/apps/dependabot))
42
+ - Bump rubocop from 1.39.0 to 1.40.0 [\#346](https://github.com/kufu/jpostcode-rb/pull/346) ([dependabot[bot]](https://github.com/apps/dependabot))
43
+ - Bump json from 2.6.2 to 2.6.3 [\#345](https://github.com/kufu/jpostcode-rb/pull/345) ([dependabot[bot]](https://github.com/apps/dependabot))
44
+
3
45
  ## [v1.0.0.20221201](https://github.com/kufu/jpostcode-rb/tree/v1.0.0.20221201) (2022-12-01)
4
46
 
5
47
  [Full Changelog](https://github.com/kufu/jpostcode-rb/compare/v1.0.0.20221101...v1.0.0.20221201)
data/CODE_OF_CONDUCT.md CHANGED
@@ -1,74 +1,86 @@
1
- # Contributor Covenant Code of Conduct
1
+ # コントリビューター行動規範
2
2
 
3
- ## Our Pledge
3
+ ## 私たちの約束
4
+ メンバー、コントリビューター、およびリーダーとして、年齢、体の大きさ、目に見えるまたは目に見えない障害、民族性、性別、
5
+ 性同一性、表現、経験のレベル、教育、社会経済的地位、国籍、人格、人種、宗教、または性的同一性と指向に関係なく、
6
+ コミュニティへの参加をハラスメントのない体験にすることを誓います。
4
7
 
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
8
+ 私たちは、オープンで親しみやすく、多様で包括的で健全なコミュニティに貢献する方法で行動し、交流することを誓います。
11
9
 
12
- ## Our Standards
10
+ ## 私たちの標準
13
11
 
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
12
+ 前向きな環境を作り上げることに貢献する行動の例:
16
13
 
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
14
+ * 他人への共感と優しさを示す
22
15
 
23
- Examples of unacceptable behavior by participants include:
16
+ * 異なる意見、視点、経験を尊重する
24
17
 
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
18
+ * 建設的なフィードバックを与え、優雅に受け入れる
33
19
 
34
- ## Our Responsibilities
20
+ * 私たちの過ちの影響を受けた人々に責任を受け入れ、謝罪し、そしてその経験から学ぶ
35
21
 
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
22
+ * 個人としてだけでなく、コミュニティ全体にとっても最善であることに焦点を当てる
39
23
 
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
24
+ 許容できない行動の例は次のとおりです。
45
25
 
46
- ## Scope
26
+ * 性的な言葉や画像の使用、および性的な注意またはその他あらゆる種類の問題行為
47
27
 
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
28
+ * トローリング、侮辱的または中傷的なコメント、個人的または政治的攻撃
54
29
 
55
- ## Enforcement
30
+ * 公的またはプライベートの嫌がらせ
56
31
 
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at oss@smarthr.co.jp. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
32
+ * 明示的な許可なしに、住所や電子メールアドレスなど、他者の個人情報を公開する
63
33
 
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
34
+ * 職業上不適切と合理的に考えられるその他の行為
67
35
 
68
- ## Attribution
36
+ ## 執行責任
69
37
 
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
38
+ コミュニティリーダーは、許容される行動の基準を明確にし、実施する責任があり、不適切、脅迫的、攻撃的、または有害と見なされる行動に応じて、適切で公正な是正措置を講じます。
72
39
 
73
- [homepage]: http://contributor-covenant.org
74
- [version]: http://contributor-covenant.org/version/1/4/
40
+ コミュニティリーダーは、コメント、コミット、コード、wikiの編集、問題、およびこの行動規範に沿っていないその他の貢献を削除、編集、または拒否する権利と責任を持ち、適切な場合はモデレーションの決定の理由を伝えます。
41
+
42
+ ## 適用範囲
43
+
44
+ この行動規範は、すべてのコミュニティスペース内で適用され、個人がパブリックスペースでコミュニティを公式に代表している場合にも適用されます。
45
+ 私たちのコミュニティを代表する例には、公式の電子メールアドレスの使用、公式のソーシャルメディアアカウントを介した投稿、オンラインまたはオフラインのイベントでの指定代理人としての行動などがあります。
46
+
47
+ ## 執行
48
+
49
+ 虐待的、嫌がらせ、またはその他の許容できない行動の事例は、執行を担当するコミュニティリーダーに対して `oss@smarthr.co.jp` で報告される場合があります。
50
+ すべての苦情は迅速かつ公正にレビューおよび調査されます。
51
+
52
+ すべてのコミュニティリーダーは、問題の報告者のプライバシーとセキュリティを尊重する義務があります。
53
+
54
+ ## 執行ガイドライン
55
+
56
+ コミュニティリーダーは、この行動規範に違反していると見なした行動への帰結を判断する際に、これらのコミュニティガイドラインに従います。
57
+
58
+ ### 1. 更生
59
+
60
+ **コミュニティへの影響**: コミュニティで専門家にふさわしくない、または歓迎されないと思われる不適切な言葉の使用やその他の不適切な行動をすること。
61
+
62
+ **帰結**: コミュニティリーダーからの非公開の書面による警告。違反の理由を明確にし、行動が不適切だった理由を説明します。 公の謝罪が要求される場合があります。
63
+
64
+ ### 2. 警告
65
+
66
+ **コミュニティへの影響**: 単一の出来事または一連の動作による違反。
67
+
68
+ **帰結**: 持続的な行動の結果を伴う警告。 指定された期間、行動規範の実施者との一方的な対話を含め、関係者との対話はありません。 これには、コミュニティスペースやソーシャルメディアなどの外部チャネルでの相互作用の回避が含まれます。 これらの条件に違反すると、一時的または永続的に禁止される場合があります。
69
+
70
+ ### 3. 一時的な禁止
71
+ **コミュニティへの影響**: 持続的で不適切な行動を含む、コミュニティ標準の重大な違反。
72
+
73
+ **帰結**: 指定された期間のコミュニティとのあらゆる種類の相互関係または公的なコミュニケーションの一時的な禁止。 この期間中、行動規範を実施する人々との一方的な対話を含め、関係する人々との公的または私的な対話は許可されません。
74
+ これらの条件に違反すると、永久的に禁止される場合があります。
75
+ ### 4. 永久的な禁止
76
+ **コミュニティへの影響**: 連続的な不適切な行動、個人への嫌がらせ、または個人の集団に対する攻撃または名誉毀損を含む、コミュニティの標準への違反のパターンを示す。
77
+
78
+ **帰結**: コミュニティ内でのあらゆる種類の公的な相互関係の永久的な禁止。
79
+
80
+ ## 帰属
81
+ この行動規範は、https://www.contributor-covenant.org/version/2/0/code_of_conduct.html で利用可能な [Contributor Covenant][homepage] バージョン2.0を基に作成されています。
82
+
83
+ コミュニティへの影響ガイドラインは[Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity)に適合しています。
84
+
85
+ [homepage]: https://www.contributor-covenant.org
86
+ この行動規範に関する一般的な質問への回答については、https://www.contributor-covenant.org/faq のFAQを参照してください。翻訳はhttps://www.contributor-covenant.org/translations で入手できます。
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jpostcode (1.0.0.20230101)
4
+ jpostcode (1.0.0.20230301)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -21,7 +21,7 @@ GEM
21
21
  pry (>= 0.13.0)
22
22
  shellany (~> 0.0)
23
23
  thor (>= 0.18.1)
24
- guard-bundler (3.0.0)
24
+ guard-bundler (3.0.1)
25
25
  bundler (>= 2.1, < 3)
26
26
  guard (~> 2.2)
27
27
  guard-compat (~> 1.1)
@@ -44,7 +44,7 @@ GEM
44
44
  nenv (~> 0.1)
45
45
  shellany (~> 0.0)
46
46
  parallel (1.22.1)
47
- parser (3.2.0.0)
47
+ parser (3.2.1.0)
48
48
  ast (~> 2.4.1)
49
49
  pry (0.14.2)
50
50
  coderay (~> 1.1)
@@ -57,40 +57,43 @@ GEM
57
57
  rb-fsevent (0.11.2)
58
58
  rb-inotify (0.10.1)
59
59
  ffi (~> 1.0)
60
- regexp_parser (2.6.1)
60
+ regexp_parser (2.7.0)
61
61
  rexml (3.2.5)
62
62
  rspec (3.12.0)
63
63
  rspec-core (~> 3.12.0)
64
64
  rspec-expectations (~> 3.12.0)
65
65
  rspec-mocks (~> 3.12.0)
66
- rspec-core (3.12.0)
66
+ rspec-core (3.12.1)
67
67
  rspec-support (~> 3.12.0)
68
68
  rspec-expectations (3.12.2)
69
69
  diff-lcs (>= 1.2.0, < 2.0)
70
70
  rspec-support (~> 3.12.0)
71
- rspec-mocks (3.12.2)
71
+ rspec-mocks (3.12.3)
72
72
  diff-lcs (>= 1.2.0, < 2.0)
73
73
  rspec-support (~> 3.12.0)
74
74
  rspec-support (3.12.0)
75
- rubocop (1.42.0)
75
+ rubocop (1.46.0)
76
76
  json (~> 2.3)
77
77
  parallel (~> 1.10)
78
- parser (>= 3.1.2.1)
78
+ parser (>= 3.2.0.0)
79
79
  rainbow (>= 2.2.2, < 4.0)
80
80
  regexp_parser (>= 1.8, < 3.0)
81
81
  rexml (>= 3.2.5, < 4.0)
82
- rubocop-ast (>= 1.24.1, < 2.0)
82
+ rubocop-ast (>= 1.26.0, < 2.0)
83
83
  ruby-progressbar (~> 1.7)
84
- unicode-display_width (>= 1.4.0, < 3.0)
85
- rubocop-ast (1.24.1)
86
- parser (>= 3.1.1.0)
87
- rubocop-performance (1.15.2)
84
+ unicode-display_width (>= 2.4.0, < 3.0)
85
+ rubocop-ast (1.27.0)
86
+ parser (>= 3.2.1.0)
87
+ rubocop-capybara (2.17.1)
88
+ rubocop (~> 1.41)
89
+ rubocop-performance (1.16.0)
88
90
  rubocop (>= 1.7.0, < 2.0)
89
91
  rubocop-ast (>= 0.4.0)
90
92
  rubocop-rake (0.6.0)
91
93
  rubocop (~> 1.0)
92
- rubocop-rspec (2.16.0)
94
+ rubocop-rspec (2.18.1)
93
95
  rubocop (~> 1.33)
96
+ rubocop-capybara (~> 2.17)
94
97
  ruby-progressbar (1.11.0)
95
98
  shellany (0.0.1)
96
99
  thor (1.2.1)
data/LICENSE.txt CHANGED
@@ -1,21 +1,7 @@
1
- The MIT License (MIT)
1
+ Copyright 2023 SmartHR, Inc.
2
2
 
3
- Copyright (c) 2017 kakipo
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
11
6
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1441,9 +1441,9 @@
1441
1441
  "city_kana": "サッポロシシロイシク",
1442
1442
  "town": "本通",
1443
1443
  "town_kana": "ホンドオリ",
1444
- "street": "16丁目4−25",
1445
- "office_name": "独立行政法人 国際協力機構 札幌国際センター",
1446
- "office_name_kana": "ドクリツギヨウセイホウジンコクサイキヨウリヨクキコウサツポロコクサイセンタ-"
1444
+ "street": "16丁目南4−25",
1445
+ "office_name": "独立行政法人 国際協力機構 北海道センター (札幌)",
1446
+ "office_name_kana": "ドクリツギヨウセイホウジン コクサイキヨウリヨクキコウ ホツカイドウセンタ- (サツポロ)"
1447
1447
  },
1448
1448
  "8701": {
1449
1449
  "postcode": "0038701",
@@ -597,6 +597,19 @@
597
597
  "office_name": null,
598
598
  "office_name_kana": null
599
599
  },
600
+ "0085": {
601
+ "postcode": "0240085",
602
+ "prefecture": "岩手県",
603
+ "prefecture_kana": "イワテケン",
604
+ "prefecture_code": 3,
605
+ "city": "北上市",
606
+ "city_kana": "キタカミシ",
607
+ "town": "しらゆり",
608
+ "town_kana": "シラユリ",
609
+ "street": null,
610
+ "office_name": null,
611
+ "office_name_kana": null
612
+ },
600
613
  "0091": {
601
614
  "postcode": "0240091",
602
615
  "prefecture": "岩手県",
@@ -1938,6 +1938,34 @@
1938
1938
  "office_name": "株式会社 コングレ",
1939
1939
  "office_name_kana": "カブシキガイシヤ コングレ"
1940
1940
  },
1941
+ "8277": [
1942
+ {
1943
+ "postcode": "1038277",
1944
+ "prefecture": "東京都",
1945
+ "prefecture_kana": "トウキョウト",
1946
+ "prefecture_code": 13,
1947
+ "city": "中央区",
1948
+ "city_kana": "チュウオウク",
1949
+ "town": "日本橋",
1950
+ "town_kana": "ニホンバシ",
1951
+ "street": "2−1−3アーバンネット日本橋二丁目ビル4F",
1952
+ "office_name": "株式会社 エヌ・ティ・ティ・ロジスコ",
1953
+ "office_name_kana": "カブシキガイシヤ エヌ・テイ・テイ・ロジスコ"
1954
+ },
1955
+ {
1956
+ "postcode": "1038277",
1957
+ "prefecture": "東京都",
1958
+ "prefecture_kana": "トウキョウト",
1959
+ "prefecture_code": 13,
1960
+ "city": "中央区",
1961
+ "city_kana": "チュウオウク",
1962
+ "town": "日本橋",
1963
+ "town_kana": "ニホンバシ",
1964
+ "street": "2−1−3アーバンネット日本橋二丁目ビル4F",
1965
+ "office_name": "株式会社 エヌ・ティ・ティ・ロジスコサービス",
1966
+ "office_name_kana": "カブシキガイシヤ エヌ・テイ・テイ・ロジスコサ-ビス"
1967
+ }
1968
+ ],
1941
1969
  "8278": {
1942
1970
  "postcode": "1038278",
1943
1971
  "prefecture": "東京都",
@@ -2025,9 +2053,9 @@
2025
2053
  "city_kana": "チュウオウク",
2026
2054
  "town": "日本橋室町",
2027
2055
  "town_kana": "ニホンバシムロマチ",
2028
- "street": "2丁目4番3号",
2029
- "office_name": "株式会社 新生銀行",
2030
- "office_name_kana": "カブシキガイシヤ シンセイギンコウ"
2056
+ "street": "二丁目4番3号",
2057
+ "office_name": "株式会社 SBI新生銀行",
2058
+ "office_name_kana": "カブシキガイシヤ エスビ-アイシンセイギンコウ"
2031
2059
  },
2032
2060
  "8307": {
2033
2061
  "postcode": "1038307",
@@ -3628,19 +3656,6 @@
3628
3656
  "office_name": "出光クレジット 株式会社",
3629
3657
  "office_name_kana": "イデミツクレジツト カブシキガイシヤ"
3630
3658
  },
3631
- "8632": {
3632
- "postcode": "1038632",
3633
- "prefecture": "東京都",
3634
- "prefecture_kana": "トウキョウト",
3635
- "prefecture_code": 13,
3636
- "city": "中央区",
3637
- "city_kana": "チュウオウク",
3638
- "town": "日本橋",
3639
- "town_kana": "ニホンバシ",
3640
- "street": "3丁目8−2(日本橋郵便局私書箱第98号)",
3641
- "office_name": "株式会社 百十四銀行 東京支店",
3642
- "office_name_kana": "カブシキガイシヤ ヒヤクジユウシギンコウ トウキヨウシテン"
3643
- },
3644
3659
  "8636": {
3645
3660
  "postcode": "1038636",
3646
3661
  "prefecture": "東京都",
@@ -2804,8 +2804,8 @@
2804
2804
  "town": "新川",
2805
2805
  "town_kana": "シンカワ",
2806
2806
  "street": "1−28−23東京ダイヤビルディング5号館",
2807
- "office_name": "株式会社 新生銀行",
2808
- "office_name_kana": "カブシキガイシヤ シンセイギンコウ"
2807
+ "office_name": "株式会社 SBI新生銀行",
2808
+ "office_name_kana": "カブシキガイシヤ エスビ-アイシンセイギンコウ"
2809
2809
  },
2810
2810
  "8284": {
2811
2811
  "postcode": "1048284",
@@ -3223,6 +3223,19 @@
3223
3223
  "office_name": "株式会社 主婦と生活社",
3224
3224
  "office_name_kana": "カブシキガイシヤ シユフトセイカツシヤ"
3225
3225
  },
3226
+ "8363": {
3227
+ "postcode": "1048363",
3228
+ "prefecture": "東京都",
3229
+ "prefecture_kana": "トウキョウト",
3230
+ "prefecture_code": 13,
3231
+ "city": "中央区",
3232
+ "city_kana": "チュウオウク",
3233
+ "town": "京橋",
3234
+ "town_kana": "キョウバシ",
3235
+ "street": "1丁目10番7号KPP八重洲ビル4階",
3236
+ "office_name": "監査法人 日本橋事務所",
3237
+ "office_name_kana": "カンサホウジン ニホンバシジムシヨ"
3238
+ },
3226
3239
  "8365": {
3227
3240
  "postcode": "1048365",
3228
3241
  "prefecture": "東京都",
@@ -3607,9 +3620,9 @@
3607
3620
  "prefecture_code": 13,
3608
3621
  "city": "中央区",
3609
3622
  "city_kana": "チュウオウク",
3610
- "town": "築地",
3611
- "town_kana": "ツキジ",
3612
- "street": "7丁目18番24号",
3623
+ "town": "八重洲",
3624
+ "town_kana": "ヤエス",
3625
+ "street": "2丁目2番1号",
3613
3626
  "office_name": "住友生命保険 相互会社",
3614
3627
  "office_name_kana": "スミトモセイメイホケン ソウゴガイシヤ"
3615
3628
  },
@@ -4042,19 +4055,6 @@
4042
4055
  "office_name": "月星商事 株式会社",
4043
4056
  "office_name_kana": "ツキボシシヨウジ カブシキガイシヤ"
4044
4057
  },
4045
- "8535": {
4046
- "postcode": "1048535",
4047
- "prefecture": "東京都",
4048
- "prefecture_kana": "トウキョウト",
4049
- "prefecture_code": 13,
4050
- "city": "中央区",
4051
- "city_kana": "チュウオウク",
4052
- "town": "八丁堀",
4053
- "town_kana": "ハッチョウボリ",
4054
- "street": "1丁目2−8タビックスビル",
4055
- "office_name": "株式会社 タビックスジャパン",
4056
- "office_name_kana": "カブシキガイシヤ タビツクスジヤパン"
4057
- },
4058
4058
  "8536": {
4059
4059
  "postcode": "1048536",
4060
4060
  "prefecture": "東京都",
@@ -4324,9 +4324,9 @@
4324
4324
  "city_kana": "チュウオウク",
4325
4325
  "town": "勝どき",
4326
4326
  "town_kana": "カチドキ",
4327
- "street": "1丁目13−1イヌイビルカチドキ11F",
4328
- "office_name": "財団法人 日本エネルギー経済研究所 石油情報センター",
4329
- "office_name_kana": "ザイダンホウジン ニホンエネルギ-ケイザイケンキユウジヨ セキユジヨウホウセンタ-"
4327
+ "street": "1丁目13−1イヌイビル・カチドキ10F",
4328
+ "office_name": "一般財団法人 日本エネルギー経済研究所 石油情報センター",
4329
+ "office_name_kana": "イツパンザイダンホウジン ニホンエネルギ-ケイザイケンキユウシヨ セキユジヨウホウセンタ-"
4330
4330
  },
4331
4331
  "8584": {
4332
4332
  "postcode": "1048584",
@@ -6317,19 +6317,6 @@
6317
6317
  "office_name": "独立行政法人 農業者年金基金",
6318
6318
  "office_name_kana": "ドクリツギヨウセイホウジン ノウギヨウシヤネンキンキキン"
6319
6319
  },
6320
- "8020": {
6321
- "postcode": "1058020",
6322
- "prefecture": "東京都",
6323
- "prefecture_kana": "トウキョウト",
6324
- "prefecture_code": 13,
6325
- "city": "港区",
6326
- "city_kana": "ミナトク",
6327
- "town": "虎ノ門",
6328
- "town_kana": "トラノモン",
6329
- "street": "5丁目12番1号",
6330
- "office_name": "全国建設厚生年金基金",
6331
- "office_name_kana": "ゼンコクケンセツコウセイネンキンキキン"
6332
- },
6333
6320
  "8039": {
6334
6321
  "postcode": "1058039",
6335
6322
  "prefecture": "東京都",
@@ -8855,8 +8842,8 @@
8855
8842
  "town": "西新橋",
8856
8843
  "town_kana": "ニシシンバシ",
8857
8844
  "street": "1丁目3番1号",
8858
- "office_name": "日立キャピタル 株式会社",
8859
- "office_name_kana": "ヒタチキヤピタル カブシキガイシヤ"
8845
+ "office_name": "三菱HCキャピタル 株式会社",
8846
+ "office_name_kana": "ミツビシエイチシ-キヤピタル カブシキガイシヤ"
8860
8847
  },
8861
8848
  "8716": {
8862
8849
  "postcode": "1058716",
@@ -3275,19 +3275,6 @@
3275
3275
  "office_name": "株式会社 アイ・アールジャパン",
3276
3276
  "office_name_kana": "カブシキガイシヤ アイ・ア-ルジヤパン"
3277
3277
  },
3278
- "8668": {
3279
- "postcode": "1078668",
3280
- "prefecture": "東京都",
3281
- "prefecture_kana": "トウキョウト",
3282
- "prefecture_code": 13,
3283
- "city": "港区",
3284
- "city_kana": "ミナトク",
3285
- "town": "赤坂",
3286
- "town_kana": "アカサカ",
3287
- "street": "7丁目6−1(赤坂郵便局私書箱第15号)",
3288
- "office_name": "社団法人 農山漁村文化協会",
3289
- "office_name_kana": "シヤダンホウジン ノウサンギヨソンブンカキヨウカイ"
3290
- },
3291
3278
  "8674": {
3292
3279
  "postcode": "1078674",
3293
3280
  "prefecture": "東京都",
@@ -3340,6 +3327,19 @@
3340
3327
  "office_name": "株式会社 ジェーシービー 青山本社",
3341
3328
  "office_name_kana": "カブシキガイシヤ ジエ-シ-ビ- アオヤマホンシヤ"
3342
3329
  },
3330
+ "8688": {
3331
+ "postcode": "1078688",
3332
+ "prefecture": "東京都",
3333
+ "prefecture_kana": "トウキョウト",
3334
+ "prefecture_code": 13,
3335
+ "city": "港区",
3336
+ "city_kana": "ミナトク",
3337
+ "town": "赤坂",
3338
+ "town_kana": "アカサカ",
3339
+ "street": "8−5−26住友不動産青山ビル西館",
3340
+ "office_name": "UCC上島珈琲 株式会社",
3341
+ "office_name_kana": "ユ-シ-シ-ウエシマコ-ヒ- (カ"
3342
+ },
3343
3343
  "8797": {
3344
3344
  "postcode": "1078797",
3345
3345
  "prefecture": "東京都",