Sha256: 906b471dece8d242d54ff604bb35e92366b918ad4662668b25e8ede9bfd6bd72
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# trange_frange # [![Build Status](https://travis-ci.org/pythogorian/trange_frange.png?branch=master)](https://travis-ci.org/pythogorian/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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trange_frange-0.1.3 | README.md |