N
Ntys Dd
it's like this
.........................
module Bar
def foo
puts 'hello'
end
def bye
puts 'bye'
end
end
def Bar.foo
#Do something
#I want to call foo now
#And call bye
#...
end
.........................
is there anything i can to to solve the problem
.........................
module Bar
def foo
puts 'hello'
end
def bye
puts 'bye'
end
end
def Bar.foo
#Do something
#I want to call foo now
#And call bye
#...
end
.........................
is there anything i can to to solve the problem