Anybody knows the method to convert the numericals to english number words in rails?
I found some Ruby scripts to convert numbericals to english words for correspon
There is still the humanize gem that does exactly what you want...
require 'humanize' 23.humanize # => "twenty three" 0.42.humanize(decimals_as: :digits) # => "zero point four two"