You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code does not work anymore in Ruby1.9 and the problem was the
"funcall" function. Some methods were changed in 1.9 so, I replaced the
line
self.funcall(init_method, *argv)
with
__send(init_method, *argv)