I'm using a delegate class for the first responder of my MainMenu.xib

class AppDelegate

    

    def application(sender, openFile: a_file)
        NSLog("Foo")
        return true
    end
end 

My application should be able to open a webloc file.

When I drop a webloc on the application icon, it never call the above method???

Someone have a solution ??? Thanks