Module: English::Jumble
Instance Method Summary collapse
-
#jumble(string) ⇒ Object
Jumble string.
Instance Method Details
#jumble(string) ⇒ Object
Jumble string.
11 12 13 14 15 |
# File 'lib/gems/english-0.3.1/lib/english/jumble.rb', line 11 def jumble(string) j = '' string.split(//).each_with_index{ |c,i| j << ( i % 2 == 0 ? c.downcase : c.upcase ) } j end |