Class: T
Overview
Constant Summary
Constants included
from CloseCall
CloseCall::MIN_SCORE
Instance Method Summary
collapse
Methods included from CloseCall
#method_missing
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class CloseCall
Instance Method Details
#someMethod(arg1) ⇒ Object
10
11
12
|
# File 'lib/carat-dev/closecall/closecall-test.rb', line 10
def someMethod(arg1)
return "1:#{arg1}"
end
|
#someMethod2(arg1) ⇒ Object
14
15
16
|
# File 'lib/carat-dev/closecall/closecall-test.rb', line 14
def someMethod2(arg1)
return "2:#{arg1}"
end
|
#someMethod3(arg1, arg2) ⇒ Object
18
19
20
|
# File 'lib/carat-dev/closecall/closecall-test.rb', line 18
def someMethod3(arg1, arg2)
return "3:#{arg1},#{arg2}"
end
|