Class: Translator
- Inherits:
-
Object
- Object
- Translator
- Defined in:
- lib/social_login/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/social_login/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/social_login/translator.rb', line 6 def hi case @language when :spanish "hola mundo" else "hello world" end end |