Class: Hola::Translator

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

Instance Method Summary collapse

Constructor Details

#initialize(language) ⇒ Translator

Returns a new instance of Translator.



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

def initialize(language)
  @language = language
end

Instance Method Details

#say_hiObject



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

def say_hi
  case @language
  when "spanish"
    'Bob Rodes dice "¡Hola, mundo!"'
  else
    'Bob Rodes says "Hello, world!"'
  end
end