Skip to content

gmitrev/money_in_words

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Money in Words

Turns numbers into words/money. Bulgarian only for the time being.

Installation

Add this line to your application's Gemfile:

gem 'money_in_words'

And then execute:

$ bundle

Or install it yourself as:

$ gem install money_in_words

Convert numbers to words

require "money_in_words"

0.to_words
=> "нула"

1.to_words
=> "един"

1.to_words(article: :neuter)
=> "едно"

1.to_words(article: :female)
=> "една"

11.to_words
=> "единадесет"

33.to_words
=> "тридесет и три"

2000.to_words
=> "две хиляди"

2001.to_words
=> "две хиляди и един"

2001.to_words(article: :female)
=> "две хиляди и една"

Conver numbers to money

require "money_in_words"

0.to_money
=> "нула лева"

0.5.to_money
=> "нула лева и петдесет стотинки"

0.5.to_money(show_zero_leva: false)
=> "петдесет стотинки"

1.to_money
=> "един лев"

1.to_money(show_zero_stotinki: true)
=> "един лев и нула стотинки"

1.01.to_money
=> "един лев и една стотинка"

1.5.to_money
=> "един лев и петдесет стотинки"

1.53.to_money
=> "един лев и петдесет и три стотинки"

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

Represent money with words

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages