Class: Componentr::Inputr

Inherits:
Object
  • Object
show all
Defined in:
lib/componentr/inputr.rb

Instance Method Summary collapse

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

#hiObject



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