Class: Hello::World::Gem::Translator
- Inherits:
-
Object
- Object
- Hello::World::Gem::Translator
- Defined in:
- lib/hello/world/gem/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.
5 6 7 |
# File 'lib/hello/world/gem/translator.rb', line 5 def initialize(language) @language = language end |
Instance Method Details
#hi ⇒ Object
9 10 11 12 13 14 15 16 |
# File 'lib/hello/world/gem/translator.rb', line 9 def hi case @language when "spanish" "hola mundo" else "hello world" end end |