class Cls
Public Instance Methods
aloha(a=0, b=1)
click to toggle source
# File lib/muack/test.rb, line 12 def aloha a=0, b=1 [a, b] end
bonjour(a: 0, b: 1)
click to toggle source
# File lib/muack/test.rb, line 15 def bonjour a: 0, b: 1 [a, b] end
ciao(h={a: 0, b: 1})
click to toggle source
# File lib/muack/test.rb, line 18 def ciao h={a: 0, b: 1} h.values_at(:a, :b) end
inspect()
click to toggle source
# File lib/muack/test.rb, line 9 def inspect 'obj' end