[MacRuby-devel] Xcode 4.3 move template files -- Workaround found!!!

Sean Mateus seanlilmateus at googlemail.com
Mon Feb 20 14:35:18 PST 2012


you can test this example! just create an example App delegate, you’ll not 
be able to connect the accessors nor actions! 

class AppDelegate
  attr_accessor :window, :more

  def applicationDidFinishLaunching(a_notification)        
    # because of this, rb_nibtool will not work
    notif = -> name do
      puts name
    end
    ## replacement: this should work 
    # notif = -> name {
    #   puts name
    # }
  end

  def tell_some_thing(sender)
    puts "something" 
  end
end
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-devel/attachments/20120220/d09cc58e/attachment-0001.html>


More information about the MacRuby-devel mailing list