P
Patrick Li
What would you guys say is the best way of creating a helper method?
module MyModule
def myMethod
#bla bla
end
end
def helperMethod
#a helper method whose existence should not be known outside of this
file
end
helperMethod() shouldn't be visible from anywhere outside this file.
Thanks for helping me with this
-Patrick
module MyModule
def myMethod
#bla bla
end
end
def helperMethod
#a helper method whose existence should not be known outside of this
file
end
helperMethod() shouldn't be visible from anywhere outside this file.
Thanks for helping me with this
-Patrick