- (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows: (BOOL)flag
{
[self showWindow:self];
return YES;
}
how to convert this method to MacRuby ?
I tried
def applicationShouldHandleReopen(the_application, k)
@window.makeKeyAndOrderFront
end
but not works