Convert to Japanese era.
Add this line to your application's Gemfile:
gem 'era_ja'
And then execute:
$ bundle
Or install it yourself as:
$ gem install era_ja
See .travis.yml
NOTE :: era_ja does not support ruby 1.9.3 since 0.4.0
strftime format string can be used as an argument.
Extra format strings provided by EraJa#to_era are:
- %o: era(alphabet)
- %O: era(kanzi)
- %1O: era(single kanzi)
- %E: era year
- %J: kanzi numeral
require 'era_ja'
Time.mktime(2012,4,29).to_era # => "H24.4.29"
Time.mktime(2012,4,29).to_era("%O%E年%m月%d日") # => "平成24年4月29日"
Time.mktime(2012,4,29).to_era("%O%JE年%Jm月%Jd日") # => "平成二十四年四月二十九日"
require 'era_ja'
Date.new(2012,4,29).to_era # => "H24.4.29"
Date.new(2012,4,29).to_era("%O%E年%m月%d日") # => "平成24年4月29日"
Date.new(2012,4,29).to_era("%O%JE年%Jm月%Jd日") # => "平成二十四年四月二十九日"
Time.mktime(2012,4,29).to_era("%Jy年%Jm月%Jd日") # => "二千十二年四月二十九日"
Date.new(2012,4,29).to_era("%Jy年%Jm月%Jd日") # => "二千十二年四月二十九日"
To convert to single kanji era strings, you can use %1O
.
require 'era_ja'
Time.mktime(2012,4,29).to_era("%1O%E年%m月%d日") # => "平24年4月29日"
To convert to custom era strings, you can set era_names
.
require 'era_ja'
Time.mktime(2012,4,29).to_era(era_names: { heisei: ['h', '平'] }) # => "h24.4.29"
Time.mktime(2012,4,29).to_era("%O%E年%m月%d日", era_names: { heisei: ['h', '平'] }) # => "平24年4月29日"
Time.mktime(2012,4,29).to_era("%O%JE年%Jm月%Jd日", era_names: { heisei: ['h', '平'] }) # => "平二十四年四月二十九日"
# same as Date
Report issues and feature requests to github Issues. https://github.com/tomiacannondale/era_ja/issues
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
The following issues exist regarding era:
- The Meiji era starts at September 8, 1866, but that date is in the old Japanese lunar calendar.
- The start dates of the Taisho and Showa eras are the same as the end dates of the Meiji and Taisho eras respectively.
tomi tomiacannondale@gmail.com
MIT License. For more information, please see LICENSE.