├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── .keep │ ├── bumpup.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── setup ├── jpostcode.gemspec ├── lib ├── jpostcode.rb └── jpostcode │ ├── address.rb │ └── version.rb └── spec ├── address_spec.rb ├── jpostcode_spec.rb └── spec_helper.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/bumpup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/.github/workflows/bumpup.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.3 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | git submodule update --init --recursive 2 | -------------------------------------------------------------------------------- /jpostcode.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/jpostcode.gemspec -------------------------------------------------------------------------------- /lib/jpostcode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/lib/jpostcode.rb -------------------------------------------------------------------------------- /lib/jpostcode/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/lib/jpostcode/address.rb -------------------------------------------------------------------------------- /lib/jpostcode/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Jpostcode 4 | VERSION = '1.0.0.20251104' 5 | end 6 | -------------------------------------------------------------------------------- /spec/address_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/spec/address_spec.rb -------------------------------------------------------------------------------- /spec/jpostcode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/spec/jpostcode_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kufu/jpostcode-rb/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------