NumberWordsEn
Provides :en locale for number_words gem. See https://github.com/conanite/number_words
Installation
gem 'number_words_en'
bundle
Usage
require 'number_words/core_ext'
I18n.locale = :en
123.to_words # => "one hundred and twenty three"
If you don't want to monkey-patch Integer, you can do this instead:
I18n.locale = :en
NumberWords.int_to_words 123 # => "one hundred and twenty three"
Contributing
- Fork it ( http://github.com/conanite/number_words_en/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request