views:

151

answers:

2

Does anyone know of a Ruby module that will take an integer and spell it out ( 1 => "one", 2 => "two", etc..)?

A: 

I don't there is a module for that issue. However here's a code snippet which should do the job.

Marcel J.
+5  A: 

Try this:

http://mike-burns.com/project/integer_to_word/

tehblanx