[MacRuby-devel] [MacRuby] #406: Can't load gem grit.

2009-10-27 Thread MacRuby
#406: Can't load gem grit. ---+ Reporter: hungerandthi...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker|

Re: [MacRuby-devel] [MacRuby] #405: Uncaught exception building RubyGems

2009-10-27 Thread MacRuby
#405: Uncaught exception building RubyGems ---+ Reporter: hungerandthi...@… | Owner: lsansone...@… Type: defect | Status: new Priority

[MacRuby-devel] [MacRuby] #405: Uncaught exception building RubyGems

2009-10-27 Thread MacRuby
#405: Uncaught exception building RubyGems ---+ Reporter: hungerandthi...@… | Owner: lsansone...@… Type: defect | Status: new Priority

Re: [MacRuby-devel] [MacRuby] #334: MacIrb hangs after require on Snow Leopard

2009-10-27 Thread MacRuby
#334: MacIrb hangs after require on Snow Leopard -+-- Reporter: rwa...@… |Owner: lsansone...@… Type: defect | Status: closed Priority: blocker

Re: [MacRuby-devel] [MacRuby] #90: macruby fails to install (problem with File.join)

2009-10-27 Thread MacRuby
#90: macruby fails to install (problem with File.join) ---+ Reporter: jakub.su...@… |Owner: lsansone...@… Type: defect | Status: closed Priority: blocker

Re: [MacRuby-devel] spotlight - MDItemRef

2009-10-27 Thread Laurent Sansonetti
Hi Alan, I'm afraid the MD* APIs haven't been covered by BridgeSupport yet, so it may not be possible to call it directly from MacRuby at this point. I would recommend to file a bug at http://bugreporter.apple.com so that we can consider this for a future Mac OS X release, and to wrap thi

[MacRuby-devel] spotlight - MDItemRef

2009-10-27 Thread Alan Skipp
Would anyone be able to give me a hint on how to get the following objective-c code working with macruby. The code uses spotlight to extract metadata from a file. MDItemRef inspectedRef = MDItemCreate(kCFAllocatorDefault,(CFStringRef)path); CFArrayRef attributeNames = MDItemCopyAttributeNames(insp

Re: [MacRuby-devel] [MacRuby] #216: fork subprocess exiting (normally) segfaults

2009-10-27 Thread MacRuby
#216: fork subprocess exiting (normally) segfaults ---+ Reporter: cel...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major |

Re: [MacRuby-devel] [MacRuby] #216: fork subprocess exiting (normally) segfaults

2009-10-27 Thread MacRuby
#216: fork subprocess exiting (normally) segfaults ---+ Reporter: cel...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major |

Re: [MacRuby-devel] [MacRuby] #216: fork subprocess exiting (normally) segfaults

2009-10-27 Thread MacRuby
#216: fork subprocess exiting (normally) segfaults ---+ Reporter: cel...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major |

Re: [MacRuby-devel] [MacRuby] #360: Embed MacRuby Target Fails If $TARGET_BUILD_DIR contains spaces

2009-10-27 Thread MacRuby
#360: Embed MacRuby Target Fails If $TARGET_BUILD_DIR contains spaces -+-- Reporter: dy...@… |Owner: lsansone...@… Type: defect | Status: closed Priorit

Re: [MacRuby-devel] [MacRuby] #361: Embed MacRuby Target Adds 60+ MB to .app

2009-10-27 Thread MacRuby
#361: Embed MacRuby Target Adds 60+ MB to .app -+-- Reporter: dy...@… |Owner: lsansone...@… Type: defect | Status: closed Priority: blocker

Re: [MacRuby-devel] [MacRuby] #385: Cannot distribute macruby apps

2009-10-27 Thread MacRuby
#385: Cannot distribute macruby apps ---+ Reporter: hungerandthi...@… |Owner: lsansone...@… Type: defect | Status: closed Priority: blocker

Re: [MacRuby-devel] [MacRuby] #216: fork subprocess exiting (normally) segfaults

2009-10-27 Thread MacRuby
#216: fork subprocess exiting (normally) segfaults ---+ Reporter: cel...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major |

Re: [MacRuby-devel] Implementing Undo In RaiseMan / MacRuby

2009-10-27 Thread Benjamin Stiglitz
def insertObject(p, inEmployeesAtIndex:index) NSLog("adding #{p} to #{employees}") # <= Not called, huh? undo = @undoManager undo.prepareWithInvocationTarget(self, removeObjectFromEmployeesAtIndex:index) if !undo.isUndoing undo.setActionName("Insert Person") end

Re: [MacRuby-devel] Implementing Undo In RaiseMan / MacRuby

2009-10-27 Thread John Shea
Steve, I am not sure what stage you are at with your example, I originally did this without using an array controller, and the undoing worked fine. I just threw together a version with an array controller - and the insertObject(person, inEmployeesAtIndex:index) and remove methods are being called