README.md in jp_jis_code-1.0.0 vs README.md in jp_jis_code-1.1.0
- old
+ new
@@ -33,29 +33,26 @@
```ruby
code = JpJisCode::Code.find('011002')
code.prefecture_name
# => '北海道'
-code.prefecture_name_k
+code.prefecture_name_h
# => 'ほっかいどう'
code.city_name
# => '札幌市'
-code.city_name_k
+code.city_name_h
# => 'さっぽろし'
code = JpJisCode::Code.find('01100')
code.prefecture_name
# => '北海道'
-code.prefecture_name_k
+code.prefecture_name_h
# => 'ほっかいどう'
code.city_name
# => '札幌市'
-code.city_name_k
+code.city_name_h
# => 'さっぽろし'
```
-
-## TODO
-- [総務省の全国地方公共団体コード](http://www.soumu.go.jp/denshijiti/code.html)のExcelから[jis_code.yml](https://github.com/YuzuruS/jp_jis_code/blob/master/data/jis_code.yml)を出力するスクリプト作成
## 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.