Sha256: dbe481e302eb5d1aaa4f580098f73c1b8dcb6b2eb160b258573132884466bd6f

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

# trange_frange #

[![Build Status](https://travis-ci.org/rubyengineer/trange_frange.svg?branch=master)](https://travis-ci.org/rubyengineer/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) 2014 Nino Milenovic

See LICENSE.txt for details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trange_frange-0.1.4 README.md