MacRuby custom initializers
问题 Just discovered MacRuby this afternoon; man is that ever COOL! However, I've run into some difficulties while attempting to extend an old project with some MacRuby-fu. Here's the deal: So I have a superclass in Objective-C that looks like this: @implementation Foo - (id) init { if (self = [super init]) { //Do nothing, don't have enough data... } return self; } - (id) initWithName:(NSString*)n andLocation:(NSString*)loc andSomethingElse:(Bar*)b { if (self = [super init]) { //Set a LOT of