Class: Morsify

Inherits:
Object
  • Object
show all
Defined in:
lib/morsify.rb

Instance Method Summary collapse

Instance Method Details

#call(str) ⇒ Object



4
5
6
# File 'lib/morsify.rb', line 4

def call(str)
  str.chars.map { |i| MORSE_CHARS.merge({ ' ' => ' '})[i.downcase] }.join(' ').strip
end