# ExtensoPt Produz valores monetários (defeito EURO) por extenso em portugês de portugal. Os valores monetários podem ser um numerico ou uma string de digitos. O extenso será produzido na escala longa [wiki](https://pt.wikipedia.org/wiki/Escalas_curta_e_longa), utilizada em todos os países lusófonos (à excepção do Brasil), podendo escolher outra moeda. ## Installation Add this line to your application's Gemfile: ```ruby gem 'extenso_pt' ``` And then execute: $ bundle Or install it yourself as: $ gem install extenso_pt ## Usage ```ruby "1234".extenso => "MIL DUZENTOS E TRINTA E QUATRO EUROS" 12000000.12.extenso => "DOZE MILHÕES DE EUROS E DOZE CÊNTIMOS" 1.01.extenso(moeda_singular:"DÓLAR") => "UM DÓLAR E UM CÊNTIMO" 10.1.extenso(moeda_plural:"DÓLARES") => "DEZ DÓLARES E DEZ CÊNTIMOS" 1.01.extenso(moeda_singular:"REAL",fracao_singular:"CENTAVO") => "UM REAL E UM CENTAVO" # por defeito plural = mais "S" 1.10.extenso(moeda_singular:"REAL",fracao_singular:"CENTAVO") => "UM REAL E DEZ CENTAVOS" 2.00.extenso(moeda_plural:"REAIS") => "DOIS REAIS" 2.10.extenso(moeda_plural:"REAIS",fracao_plural:"CENTAVOS") => "DOIS REAIS E DEZ CENTAVOS" # por defeito singular = menos "S" (caso termine em "S") 2.01.extenso(moeda_plural:"REAIS",fracao_plural:"CENTAVOS") => "DOIS REAIS E UM CENTAVO" ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing Bug reports and pull requests are welcome on GitHub at [github](https://github.com/hernanilr/extenso_pt). ## License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).