Number Humanizer
A ruby gem to convert numbers into words. It has been designed to support multiple languages and currently support only Arabic and English languages.
Installation
Add this line to your application's Gemfile:
gem 'number_humanizer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install number_humanizer
Usage
You have two ways to use the gem:
- Using service class
require 'number_humanizer'
NumberHumanizer::Manager.new(1500).call.result
#=> "ألف و خمسة مائة"
- Call monkey patching methods added to Integer and Float classes ```ruby require 'number_humanizer'
1500.to_word
=> "ألف و خمسة مائة"
Also you can pass currency option as follows:
```ruby
require 'number_humanizer'
NumberHumanizer::Manager.new(1500, currency: 'ريال').call.result
#=> "ألف و خمسة مائة ريال"
1500.to_word(currency: 'ريال')
#=> "ألف و خمسة مائة ريال"
Note that sub currency is also supported but not fully functional so if you need to use it then you can pass amount and sub amount separately to the service and you need to combine.
Configurations
You have to way for setting configurations in number humanizer gem:
- Set configurations globally: this will be used in all conversions. You can add the following snippet in initializers folder or any file that is loaded automatically. Note that this configuration can be changed at any time by calling this code.
# initializers/number_humanizer.rb
require 'number_humanizer'
NumberHumanizer.setup do |config|
# default language is arabic
config.language = :arabic
# currency is not set by default and you can set from here
config.currency = 'ريال'
# all upcoming configs will be placed here
end
- Pass configuratoins instantly whether when using service object or monkey patched methods so that global configurations will be ignored
require 'number_humanizer'
NumberHumanizer::Manager.new(1500, language: :arabic, currency: 'ريال').call.result
#=> "ألف و خمسة مائة ريال"
1500.to_word(language: :arabic, currency: 'ريال')
#=> "ألف و خمسة مائة ريال"
Supported Languages
Initially, gem was supporting Arabic language only but now English language is supported too. Here are the details needed for each language:
- Arabic Language
This is the default one and you don't need to specify it but if you set other language and want to have arabic word for given number then you can pass it to the service or as args in to_word
monkey patched method as explained in configurations section.
Note that accepted values are: arabic
and ar
.
- English Language
Like arabic language, english language can be configured globally or instantly as described in configuration section. Here you just need to set language
config.
Note that accepted values are: english
and en
.
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/abahaggag/number_humanizer. 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 NumberHumanizer project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.