Class: Translator

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

Instance Method Summary collapse

Constructor Details

#initialize(language) ⇒ Translator

Returns a new instance of Translator.



2
3
4
# File 'lib/helloworld_dh/translator.rb', line 2

def initialize(language)
  @language = language
end

Instance Method Details

#hiObject



6
7
8
9
10
11
12
13
14
15
# File 'lib/helloworld_dh/translator.rb', line 6

def hi
  case @language
  when 'Japanese'
    'これは私の初めてのジェムです!'
  when 'English'
    'This is my first ruby gem!'
  when 'Korean'
    '이것은 저의 첫번째 루비 젬입니다 !!'
  end
end