= numbersToWords - convert your integers and floats to english or japaneese words,or translate it into american currency - This plugin was created from a solution to the ruby quiz (english numbers) by Matthew D Moss. I modified the code to work as a rails plugin and added the to_dollars method. - the to_dollars method will work with integers and floats - the to_english and to_japaneese methods will only work with integers. If you have call these methods on a float, it will be converted to an integer before translating. = Examples 123.to_english == one hundred and twenty-three 123.to_japaneese == hyaku niju san 123.to_dollars == one hundred and twenty-three dollars money = 123.23 money.to_dollars == one hundred and twenty-three dollars and twenty-three cents money = 1.01 money.to_dollars == one dollar and one cent = Install script/plugin install http://svn.recentrambles.com/plugins/numbersToWords = License Ruby''s - Do whatever you want whenever you want, with any part or all of this code. = Contributions you can send patches, questions, or feature requests to anotherramble@recentrambles.com = Thank You Ruby Quiz and Matthew D Moss Charlie Bowman www.recentrambles.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060510/aeeee5af/attachment.html
Posted at http://agilewebdevelopment.com/plugins/show/112 :) -- Benjamin Curtis http://www.tesly.com/ -- Collaborative test case management http://www.agilewebdevelopment.com/ -- Resources for the Rails community On May 10, 2006, at 4:43 AM, Charlie Bowman wrote:> > > = numbersToWords - convert your integers and floats to english or > japaneese words,or translate it into american currency > > - This plugin was created from a solution to the ruby quiz (english > numbers) by Matthew D Moss. I modified the code to work as a rails > plugin and added the to_dollars method. > - the to_dollars method will work with integers and floats > - the to_english and to_japaneese methods will only work with > integers. If you have call these methods on a float, it will be > converted to an integer before translating. > > = Examples > 123.to_english == one hundred and twenty-three > 123.to_japaneese == hyaku niju san > 123.to_dollars == one hundred and twenty-three dollars > money = 123.23 > money.to_dollars == one hundred and twenty-three dollars and twenty- > three cents > money = 1.01 > money.to_dollars == one dollar and one cent > > = Install script/plugin install http://svn.recentrambles.com/ > plugins/numbersToWords > > = License > Ruby''s - Do whatever you want whenever you want, with any part or > all of this code. > > = Contributions > you can send patches, questions, or feature requests to > anotherramble@recentrambles.com > > = Thank You Ruby Quiz and Matthew D Moss > > Charlie Bowman > www.recentrambles.com > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails
The .to_dollars does not work "and" means decimal so, " money = 123.23 money.to_dollars == one hundred and twenty-three dollars and twenty-three cents" now if I were to put that back into numbers this is how it grammerly should come out: 100.23.23 thats one error, but, besides that great work :) -- Posted via http://www.ruby-forum.com/.
Thanks, someone pointed that out to me earlier. It''s been fixed. a fresh install of the plugin should fix your problem. Charlie Bowman www.recentrambles.com On Wed, 2006-05-10 at 18:12 +0200, Mohammad wrote:> The .to_dollars does not work "and" means decimal so, > " money = 123.23 > money.to_dollars == one hundred and twenty-three dollars and > twenty-three cents" > now if I were to put that back into numbers this is how it grammerly > should come out: 100.23.23 > thats one error, but, besides that great work :) >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060510/abc97aa6/attachment.html