0.0
No commit activity in last 3 years
No release in over 3 years
全国地方公共団体コードから住所(都道府県、市区町村)を取得するgem
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

JpJisCode

Gem Version Build Status Maintainability Coverage Status Dependency Status

全国地方公共団体コード(JIS地名コード、地方自治体コード、都道府県コード、市町村コードなどと呼ばれることもある。)から都道府県、市区町村を取得するライブラリです。

参考: 全国地方公共団体コード

インストール方法

Gemfileに下記の行を追加してください。

gem 'jp_jis_code'

それから下記を実行してください。

$ bundle

もしくは下記のようなコマンドでもインストールできます。

$ gem install jp_jis_code

使用方法

市区町村コードには5桁のものと6桁のものがありますが、 両方対応しています。

code = JpJisCode::Code.find('011002')
code.prefecture_name
# => '北海道'
code.prefecture_name_h
# => 'ほっかいどう'
code.city_name
# => '札幌市'
code.city_name_h
# => 'さっぽろし'

code = JpJisCode::Code.find('01100')
code.prefecture_name
# => '北海道'
code.prefecture_name_h
# => 'ほっかいどう'
code.city_name
# => '札幌市'
code.city_name_h
# => 'さっぽろし'

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/YuzuruS/jp_jis_code. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the JpJisCode project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.