public
Description: Turning (large) integers into japanese sounding words and vice versa (ruby)
Homepage: http://rufus.rubyforge.org/rufus-mnemo
Clone URL: git://github.com/jmettraux/rufus-mnemo.git
name age message
file CHANGELOG.txt Fri Apr 04 06:25:02 -0700 2008 first git commit [jmettraux]
file CREDITS.txt Mon Jul 20 04:02:41 -0700 2009 added CREDITS.txt [jmettraux]
file LICENSE.txt Fri Apr 04 06:25:02 -0700 2008 first git commit [jmettraux]
file README.txt Mon Jul 20 18:32:35 -0700 2009 added support for negative integers [jmettraux]
file Rakefile Mon Jul 20 18:26:56 -0700 2009 Rufus::Mnemo::VERSION is in [jmettraux]
directory doc/ Thu Mar 12 16:39:15 -0700 2009 moved to hanna rdoc template [jmettraux]
directory lib/ Mon Jul 20 18:32:35 -0700 2009 added support for negative integers [jmettraux]
file rufus-mnemo.gemspec Mon Jul 20 18:26:56 -0700 2009 Rufus::Mnemo::VERSION is in [jmettraux]
directory test/ Tue Jul 21 00:22:14 -0700 2009 support for negative numbers, final ci. Closes ... [jmettraux]
README.txt
= rufus-mnemo

This gem provides methods for turning integer into easier to remember 'words' and vice-versa.

The module Rufus::Mnemo has all the explanation.


== getting it

  sudo gem install rufus-mnemo

or at

http://rubyforge.org/frs/?group_id=4812


== usage

  require 'rubygems'
  require 'rufus/mnemo'
  
  s = Rufus::Mnemo::from_integer 125704
  
  puts s
    # => 'karasu'
  
  i = Rufus::Mnemo::to_integer s
  
  puts i
    # => 125704


== about negative integers

They are prefixed with the "wi" syllable (Thanks Stephan Wehner).

  p Rufus::Mnemo::from_integer -173866
    # => 'winamote'


= dependencies

None.


== mailing list

On the rufus-ruby list[http://groups.google.com/group/rufus-ruby] :

  http://groups.google.com/group/rufus-ruby


== issue tracker

http://rubyforge.org/tracker/?atid=18584&group_id=4812&func=browse


== source

http://github.com/jmettraux/rufus-mnemo

  git checkout git://github.com/jmettraux/rufus-mnemo.git


== author

John Mettraux, jmettraux@gmail.com 
http://jmettraux.wordpress.com


== the rest of Rufus

http://rufus.rubyforge.org


== license

MIT