Re: [MacRuby-devel] MacRuby objects in IB in Xcode4

2011-06-12 Thread Mark Rada
It sounds like you have both Xcode 3 and Xcode 4 on your system. Only the one installed to /Developer will get the MacRuby support in IB. Sent from my iDevice On 2011-06-12, at 17:05, Jakub Suder wrote: > On Sun, Jun 12, 2011 at 12:27, Eloy Duran wrote: >> Are you defining the ‘action’ metho

Re: [MacRuby-devel] MacRuby objects in IB in Xcode4

2011-06-12 Thread Jakub Suder
On Sun, Jun 12, 2011 at 12:27, Eloy Duran wrote: > Are you defining the ‘action’ method with a ‘sender’ argument? Because that's > the way it's picked up as being a method that should be exposed to IB. E.g.: > >  def peelBananas(sender) >    # provide your optimized algorithm for peeling bananas

Re: [MacRuby-devel] MacRuby objects in IB in Xcode4

2011-06-12 Thread Eloy Duran
Are you defining the ‘action’ method with a ‘sender’ argument? Because that's the way it's picked up as being a method that should be exposed to IB. E.g.: def peelBananas(sender) # provide your optimized algorithm for peeling bananas end On 11 jun 2011, at 21:46, Jakub Suder wrote: > Hi

[MacRuby-devel] MacRuby objects in IB in Xcode4

2011-06-11 Thread Jakub Suder
Hi, is there any way to connect a control's action to a method defined in a MacRuby class in Xcode4? I can't see how could I do it - am I doing something wrong or is this a missing feature for now? (I don't even see any way to add the method to the list manually in IB...) JS _