Sha256: e03c8e53f9c41c9a227191476f8998a7dbae10737d765a9a222ee08e34afccb7

Contents?: true

Size: 1004 Bytes

Versions: 2

Compression:

Stored size: 1004 Bytes

Contents

# trange_frange #
The tool spells out numbers (amounts) in words. It supports serbian language and amounts up to 999 bilions.
> 12345.67 => 'dvanaest hiljada tri stotine četrdeset pet i 67/100'

## Install ##
```bash
$ gem install trange_frange
```

## Examples ##
```ruby
require 'trange_frange'
amount = TrangeFrange::Amount.new(16345.67)
amount.spell!
=> "šesnaest hiljada tri stotine četrdeset pet"
```
including a fraction
```ruby
amount.spell! show_fraction: true
=> 'šesnaest hiljada tri stotine četrdeset pet i 67/100'
```
disabling spacing between words
```ruby
amount.spell! squeeze: true
=> 'šesnaesthiljadatristotinečetrdesetpet'
```
disabling accented lating characters
```ruby
amount.spell! bald: true
=> 'sesnaest hiljada tri stotine cetrdeset pet'
```
combined options
```ruby
amount.spell! show_fraction: true, squeeze: true, bald: true
=> 'sesnaesthiljadatristotinecetrdesetpet i 67/100'
```

### Copyright ###
Copyright (c) 2013 Ninoslav Milenovic

See LICENSE.txt for details.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
trange_frange-0.1.2 README.md
trange_frange-0.1.1 README.md