There are number of occasions when you deal with uncommon situations in georgian software. Those are:
- mobile number validation,
- numbers to readable format (1 -> 'ერთი'),
- date formatting (not supported by i18n)
- and outdated, but still active, GEO character encoding.
KA gem will enable you to deal with all these situations.
Add this line to your application's Gemfile:
gem 'ka',
And then execute:
$ bundle
Or install it yourself as:
$ gem install ka
Validation and formatting of mobile numbers are self-exmplanatory:
require 'ka'
include KA
...
mobile = 'my mobile: (595) 33 55 14'
compact_mobile(mobile) # => '595335514'
correct_mobile?(mobile) # => true
format_mobile(mobile, operator_pre: '[', operator_suf: ']', by: 2, separator: ' ') #=> [595]33 55 14
to_ka
method is integrated within Integer
class.
Now you can convert integers into georgian words (works upto 999,999,999,999,999).
This task is common, especialy when writing some accounting software.
1.to_ka # => ერთი
999_999_999_999_999.to_ka # => ცხრაას ოთხმოცდა ცხრამეტი ტრილიონ ცხრაას ოთხმოცდა ცხრამეტი მილიარდ ცხრაას ოთხმოცდა ცხრამეტი მილიონ ცხრაას ოთხმოცდა ცხრამეტი ათას ცხრაას ოთხმოცდა ცხრამეტი
TODO:
When using the ka
gem String
automatically receives the to_ka
, to_geo
and to_lat
methods.
'dimitri'.to_ka(:all) # => დიმიტრი
'დიმიტრი'.to_lat # => dimitri
'დიმიტრი'.to_geo # => ÃÉÌÉÔÒÉ
The to_ka
method receives the additional type
parameter which indicates which characters
to use when converting to georgian unicode. There are three possible values for this parameter:
geo
, convert only GEO characters (default),lat
, convert only LAT characters andall
, converts both GEO and LAT characters.
- Fork it
- 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