Class: Bula::Translator
- Inherits:
-
Object
- Object
- Bula::Translator
- Defined in:
- lib/bula/translator.rb
Instance Method Summary collapse
- #hi ⇒ Object
-
#initialize(lang) ⇒ Translator
constructor
A new instance of Translator.
Constructor Details
#initialize(lang) ⇒ Translator
Returns a new instance of Translator.
2 3 4 |
# File 'lib/bula/translator.rb', line 2 def initialize(lang) @language = lang end |
Instance Method Details
#hi ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/bula/translator.rb', line 6 def hi case @language when "fiji" "bula bula" when "spanish" "hola mundo" else "hello world" end end |