All Projects → jmettraux → rufus-mnemo

jmettraux / rufus-mnemo

Licence: MIT License
Turning (large) integers into japanese sounding words and vice versa (ruby)

Programming Languages

ruby
36898 projects - #4 most used programming language

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.

2016 note: I'm now using munemo instead of this rufus-mnemo, it's a bit different but simpler.

getting it

gem install rufus-mnemo

or add it to your Gemfile.

usage

#require 'rubygems'
require 'rufus/mnemo'

p Rufus::Mnemo.from_integer(125704)
p Rufus::Mnemo.from_i(125704)
p Rufus::Mnemo.to_s(125704)
  # => 'karasu'

p Rufus::Mnemo.to_integer('karasu')
p Rufus::Mnemo.to_i('karasu')
p Rufus::Mnemo.from_s('karasu')
  # => 125704

about negative integers

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

p Rufus::Mnemo.from_integer(-173866)
p Rufus::Mnemo.to_s(-173866)
  # => 'winamote'

ports in other languages

dependencies

None.

mailing list

On the rufus-ruby list:

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

IRC

On freenode.net, the #ruote channel

issue tracker

https://github.com/jmettraux/rufus-mnemo/issues

source

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

author

John Mettraux, [email protected], http://lambda.io/jmettraux

license

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].