Class: GemTestYuno::Translator

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

Class Method Summary collapse

Class Method Details

.shout(word) ⇒ Object

渡された文字列に対して、1文字ごとに濁点をつけて返す



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

def self.shout(word)
    word.split('').join('゛') + '゛'
end