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