spanish_number 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/spanish_number.rb +1 -1
  2. metadata +2 -2
@@ -4,7 +4,7 @@ CENTENAS = ["", "ciento", "doscientos", "trescientos", "cuatrocientos", "quinien
4
4
  MILLONES = ["millon", "billon", "trillon", "cuatrillon"]
5
5
 
6
6
  class Numeric
7
- def to_text_spanish currency
7
+ def to_spanish_text currency=""
8
8
  final_text = ""
9
9
  self.to_s =~ /([^\.]*)(\..*)?/
10
10
  int, dec = $1.reverse, $2 ? $2[1..-1] : ""
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spanish_number
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2013-01-29 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: A simple hello world gem
14
+ description: Express a number in spanish text
15
15
  email: leo@kueski.com
16
16
  executables: []
17
17
  extensions: []