Class: Componentr::Inputr
- Inherits:
-
Object
- Object
- Componentr::Inputr
- Defined in:
- lib/componentr/inputr.rb
Instance Method Summary collapse
- #hi ⇒ Object
-
#initialize(inputs) ⇒ Inputr
constructor
A new instance of Inputr.
Constructor Details
#initialize(inputs) ⇒ Inputr
Returns a new instance of Inputr.
2 3 4 |
# File 'lib/componentr/inputr.rb', line 2 def initialize(inputs) @inputs = inputs end |
Instance Method Details
#hi ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/componentr/inputr.rb', line 6 def hi case @inputs when "spanish" "hola mundo" when "korean" "anyoung ha se yo" else "hello world" end end |