You can subscribe to this list here.
2002 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(3) |
Nov
|
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(1) |
Feb
(11) |
Mar
(9) |
Apr
(1) |
May
(5) |
Jun
(5) |
Jul
(4) |
Aug
(3) |
Sep
(15) |
Oct
(8) |
Nov
(9) |
Dec
(11) |
2004 |
Jan
(5) |
Feb
(2) |
Mar
(1) |
Apr
(3) |
May
(6) |
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
|
Dec
(3) |
2005 |
Jan
(1) |
Feb
(7) |
Mar
(6) |
Apr
(36) |
May
(20) |
Jun
(42) |
Jul
(21) |
Aug
(12) |
Sep
(56) |
Oct
(5) |
Nov
(55) |
Dec
(53) |
2006 |
Jan
(43) |
Feb
(83) |
Mar
(98) |
Apr
(42) |
May
(68) |
Jun
(55) |
Jul
(50) |
Aug
(104) |
Sep
(13) |
Oct
(70) |
Nov
(37) |
Dec
(42) |
2007 |
Jan
(56) |
Feb
(18) |
Mar
(43) |
Apr
(80) |
May
(65) |
Jun
(149) |
Jul
(103) |
Aug
(71) |
Sep
(62) |
Oct
(67) |
Nov
(72) |
Dec
(63) |
2008 |
Jan
(64) |
Feb
(63) |
Mar
(31) |
Apr
(42) |
May
(71) |
Jun
(62) |
Jul
(37) |
Aug
(25) |
Sep
(5) |
Oct
(2) |
Nov
(7) |
Dec
(14) |
2009 |
Jan
(20) |
Feb
(15) |
Mar
(19) |
Apr
(8) |
May
(7) |
Jun
|
Jul
(37) |
Aug
(12) |
Sep
(19) |
Oct
(5) |
Nov
(1) |
Dec
(4) |
2010 |
Jan
(5) |
Feb
(24) |
Mar
(16) |
Apr
(9) |
May
(4) |
Jun
|
Jul
|
Aug
(6) |
Sep
(2) |
Oct
(1) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(7) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(6) |
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(2) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(5) |
Dec
|
2016 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
(1) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Anne G <an...@wj...> - 2005-12-23 19:05:20
|
Ahah! wonderful. Thank you so much. I had indeed called the folder rubyprojects/addon and I understand now how that is a problem. I had not debugged the problem all the way. Thank you so much for finding what the problem was! thanks you Anne On Fri, 23 Dec 2005, Jonathan Paisley wrote: > On 23 Dec 2005, at 13:51, Anne G wrote: > > > simpleapp runs fine from the developer/example/rubycocoa > > folder, but it does not run from the desktop folder. > > > > the error message shows up in its own xcode window. > > >>> /Users/anne/Desktop/learning ruby/ruby > >>> projects:addon/Code/build/Development/RubyCocoaTar.app/Contents/ > > Ahah! The problem is that your directory name contains a ':' > character (in the Finder it'll show up as a forward slash '/'). The > path to the Resources directory is added to $LOAD_PATH, which is > eventually converted to a :-separated string in the ruby core. > Therefore, the full path to your application is lost. > > You could perhaps report this as a bug in ruby. > > The temporary fix is to remove that character from the directory name :) > > |
From: Jonathan P. <jp...@dc...> - 2005-12-23 17:26:16
|
On 23 Dec 2005, at 13:51, Anne G wrote: > simpleapp runs fine from the developer/example/rubycocoa > folder, but it does not run from the desktop folder. > > the error message shows up in its own xcode window. >>> /Users/anne/Desktop/learning ruby/ruby >>> projects:addon/Code/build/Development/RubyCocoaTar.app/Contents/ Ahah! The problem is that your directory name contains a ':' character (in the Finder it'll show up as a forward slash '/'). The path to the Resources directory is added to $LOAD_PATH, which is eventually converted to a :-separated string in the ruby core. Therefore, the full path to your application is lost. You could perhaps report this as a bug in ruby. The temporary fix is to remove that character from the directory name :) |
From: Anne G <an...@wj...> - 2005-12-23 13:51:11
|
For both the tutorial and simpleapp I do the same thing. All the code comes in a folder. I double click on the simpleapp.pbproj which opens xcode. (it tells me the project was saved with an older version of xcode, and it creates simpleapp.xcodeproj. then I click on build and run. simpleapp runs fine from the developer/example/rubycocoa folder, but it does not run from the desktop folder. the error message shows up in its own xcode window. thanks for your help anne On Fri, 23 Dec 2005, Jonathan Paisley wrote: > > > I replaced the tutorial rb_main.rb with the simple > > example rb_main.rb since they seemed to do the same > > thing and I know simple example works. > > after rbfiles each do... > > I added some debugging puts > > puts File.basename(path) > > require( File.basename(path) ) > > puts "this is ok " > > Controller.rb > > /Users/anne/Desktop/learning ruby/ruby > > projects:addon/Code/build/Development/RubyCocoaTar.app/Contents/ > > Resources/rb_main.rb:17:in > > `require': No such file to load -- Controller.rb (LoadError) > > This require must be the problem since it does not print > > the "this is ok" > > Could you explain exactly how you are attempting to run the program? > > Using 'ruby rb_main.rb' will not work - you have to start the > compiled stub program in the Contents/MacOS directory or open the > application as you would any other (from the Finder or use the 'open' > command). > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > |
From: Jonathan P. <jp...@dc...> - 2005-12-23 11:17:32
|
> I replaced the tutorial rb_main.rb with the simple > example rb_main.rb since they seemed to do the same > thing and I know simple example works. > after rbfiles each do... > I added some debugging puts > puts File.basename(path) > require( File.basename(path) ) > puts "this is ok " > Controller.rb > /Users/anne/Desktop/learning ruby/ruby > projects:addon/Code/build/Development/RubyCocoaTar.app/Contents/ > Resources/rb_main.rb:17:in > `require': No such file to load -- Controller.rb (LoadError) > This require must be the problem since it does not print > the "this is ok" Could you explain exactly how you are attempting to run the program? Using 'ruby rb_main.rb' will not work - you have to start the compiled stub program in the Contents/MacOS directory or open the application as you would any other (from the Finder or use the 'open' command). |
From: Jonathan P. <jp...@dc...> - 2005-12-23 11:15:11
|
On 21 Dec 2005, at 20:53, Anne G wrote: > rubycocoa regarding simbl disappeared. I don't quite > understand why runny rubycocoa would start something than > the program to run, but for now, problem solved. Running *any* Cocoa program would have shown the SIMBL error messages. Look in your console.log file and you'll probably see lots of them, corresponding to each program you run. |
From: Jonathan P. <jp...@dc...> - 2005-12-23 11:14:20
|
Hello, This patch came up in a discussion a few weeks ago but hasn't been merged yet as far as I can tell. class_createInstanceFromZone can't take a NULL zone argument - so it's necessary to look up NSDefaultMallocZone() manually. Cheers, Jonathan |
From: Jonathan P. <jp...@dc...> - 2005-12-23 11:12:31
|
Hello, When using ns_overrides on methods that return large values (e.g., an NSRect), a crash occurs since the native function implementation used doesn't handle the msgSend_stret hidden first argument. The attached patch resolves this issue by choosing between one of two implementations for the handle_ruby_method function. I haven't adjusted indentation in order to make the patch smaller and clearer, so some cleanup may be required after application. Cheers, Jonathan |
From: Anne G <an...@wj...> - 2005-12-22 06:03:02
|
Actually the simbl error was not the reason the rubycocoa tutorial does not run. I replaced the tutorial rb_main.rb with the simple example rb_main.rb since they seemed to do the same thing and I know simple example works. after rbfiles each do... I added some debugging puts puts File.basename(path) require( File.basename(path) ) puts "this is ok " Controller.rb /Users/anne/Desktop/learning ruby/ruby projects:addon/Code/build/Development/RubyCocoaTar.app/Contents/Resources/rb_main.rb:17:in `require': No such file to load -- Controller.rb (LoadError) This require must be the problem since it does not print the "this is ok" whereas simple applications gives AppController.rb this is ok MyView.rb this is ok It looks like the code looks in the project and finds .rb file. In the tutorial project there is just one file, Controller, I wonder why it did not find it to load. "no such file to load" I wondered if it was a path problem, so I copied simple application to the same folder that has the tutorial project. SimpleApp has exited with status 1. AppController.rb /Users/anne/Desktop/learning ruby/ruby projects:addon/simpleapp/build/Development/SimpleApp.app/Contents/Resources/rb_main.rb:13:in `require': No such file to load -- AppController.rb (LoadError) same error as with tutorial. What is the problem? What do I need to do to run rubycocoa from anywhere. I just installed /Installed/\ Done/RubyCocoa-0.4.2-tiger.dmg I did not see anything about setting a path. anne |
From: Anne G <an...@wj...> - 2005-12-21 20:53:21
|
Yes, it is true, there was two simbl directories, one with an acidsearch bundle. I deleted both of them, and the rubycocoa regarding simbl disappeared. I don't quite understand why runny rubycocoa would start something than the program to run, but for now, problem solved. thank you for your patience with me anne On Wed, 21 Dec 2005, Jonathan Paisley wrote: > On 19 Dec 2005, at 17:54, Anne G wrote: > > > 2005-12-19 18:44:42.170 SimpleApp[557] Can't open input > > server /Library/InputManagers/SIMBL > > 2005-12-19 18:44:42.447 SimpleApp[557] MyView(0x3fbe60) - > > NSView not correctly initialized. Did you forget to call > > super? > > > > With all the examples, I can see how rubycocoa works, but > > it would be nice to have examples which run without errors > > Did you find out what you have got installed that requires SIMBL? > > Try moving the directory "SIMBL" in /Library/InputManagers to the > trash and trying again. > > The second error you're seeing (about NSView not being correctly > initialised) is something to do with RubyCocoa, but it's not yet been > resolved. Things seem to work okay despite the error message. > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > |
From: Jonathan P. <jp...@dc...> - 2005-12-21 09:28:19
|
On 19 Dec 2005, at 17:54, Anne G wrote: > 2005-12-19 18:44:42.170 SimpleApp[557] Can't open input > server /Library/InputManagers/SIMBL > 2005-12-19 18:44:42.447 SimpleApp[557] MyView(0x3fbe60) - > NSView not correctly initialized. Did you forget to call > super? > > With all the examples, I can see how rubycocoa works, but > it would be nice to have examples which run without errors Did you find out what you have got installed that requires SIMBL? Try moving the directory "SIMBL" in /Library/InputManagers to the trash and trying again. The second error you're seeing (about NSView not being correctly initialised) is something to do with RubyCocoa, but it's not yet been resolved. Things seem to work okay despite the error message. |
From: Anne G <an...@wj...> - 2005-12-19 17:54:47
|
Hi I have been wondering about my simbl problem. I tried to run simple application. The application does run fine. But I get the following messages: 2005-12-19 18:44:42.170 SimpleApp[557] Can't open input server /Library/InputManagers/SIMBL 2005-12-19 18:44:42.447 SimpleApp[557] MyView(0x3fbe60) - NSView not correctly initialized. Did you forget to call super? Simple application is in developer/examples/rubycocoa With all the examples, I can see how rubycocoa works, but it would be nice to have examples which run without errors anne |
From: kimura wataru<ki...@us...> - 2005-12-12 13:19:49
|
Thanks, Frank and Jonathan. I fixed this bug and checked in to CVS. Sat, Dec 10, 2005 8:49:52 PM, Jonathan Paisley wrote: >On 10 Dec 2005, at 18:57, Frank Illenberger wrote: > >> I just checked my RubyCocoa app for memory leaks with the 'leaks' >> command line tool. I observed lots of leaks that seem to come from >> the conversion of ruby numbers to NSNumbers. The stack trace of the >> leak always shows the following: > >> It looks like the objects returned from rbobj_to_nsobj never get >> released. Is this a bug of RubyCocoa or am I doing something wrong? > >I think there is a bug. Specifically, rbnum_to_nsnum from >ocdata_conv.m should return an autoreleased object: > Index: framework/src/objc/ocdata_conv.m =================================================================== RCS file: /cvsroot/rubycocoa/src/framework/src/objc/ocdata_conv.m,v retrieving revision 1.12 diff -u -r1.12 ocdata_conv.m --- framework/src/objc/ocdata_conv.m 1 Nov 2005 16:18:55 -0000 1.12 +++ framework/src/objc/ocdata_conv.m 12 Dec 2005 13:09:34 -0000 @@ -343,11 +343,9 @@ { BOOL result; VALUE rbstr = rb_obj_as_string(rbval); - id pool = [[NSAutoreleasePool alloc] init]; id nsstr = [NSString stringWithUTF8String: STR2CSTR(rbstr)]; - *nsval = [[NSDecimalNumber alloc] initWithString: nsstr]; + *nsval = [NSDecimalNumber decimalNumberWithString: nsstr]; result = [(*nsval) isKindOfClass: [NSDecimalNumber class]]; - [pool release]; return result; } -- kimura wataru |
From: Jonathan P. <jp...@dc...> - 2005-12-10 20:50:31
|
On 10 Dec 2005, at 18:57, Frank Illenberger wrote: > I just checked my RubyCocoa app for memory leaks with the 'leaks' > command line tool. I observed lots of leaks that seem to come from > the conversion of ruby numbers to NSNumbers. The stack trace of the > leak always shows the following: > It looks like the objects returned from rbobj_to_nsobj never get > released. Is this a bug of RubyCocoa or am I doing something wrong? I think there is a bug. Specifically, rbnum_to_nsnum from ocdata_conv.m should return an autoreleased object: static BOOL rbnum_to_nsnum(VALUE rbval, id* nsval) { BOOL result; VALUE rbstr = rb_obj_as_string(rbval); id pool = [[NSAutoreleasePool alloc] init]; id nsstr = [NSString stringWithUTF8String: STR2CSTR(rbstr)]; *nsval = [[NSDecimalNumber alloc] initWithString: nsstr]; result = [(*nsval) isKindOfClass: [NSDecimalNumber class]]; [pool release]; return result; // **** should be return [result autorelease]; } |
From: Frank I. <ill...@ma...> - 2005-12-10 18:57:22
|
Hi, I just checked my RubyCocoa app for memory leaks with the 'leaks' command line tool. I observed lots of leaks that seem to come from the conversion of ruby numbers to NSNumbers. The stack trace of the leak always shows the following: -[NSObject(NSKeyValueCoding) valueForKeyPath:] _NSGetUsingKeyValueGetter imp_valueForUndefinedKey _objc_msgForward -[NSObject(NSForwardInvocation) forward::] imp_forwardInvocation -[RBObject forwardInvocation:] -[RBObject rbobjForwardInvocation:] -[RBObject stuffForwardResult:to:] rbobj_to_nsobj rbobj_convert_to_nsobj rbnum_to_nsnum -[NSDecimalNumberPlaceholder initWithString:locale:] -[NSDecimalNumberPlaceholder initWithDecimal:] NSAllocateObject _internal_class_createInstanceFromZone It looks like the objects returned from rbobj_to_nsobj never get released. Is this a bug of RubyCocoa or am I doing something wrong? Cheers Frank |
From: Frank I. <ill...@ma...> - 2005-12-10 18:49:50
|
I found the solution myself using the following command: rb_eval_string([[NSString stringWithFormat:@"load '%@'", file] fileSystemRepresentation]); Cheers Frank On 10.12.2005, at 12:19, Frank Illenberger wrote: > Hi, > > I am using ruby classes that are derived from Cocoa classes. Does > anybody know if it is possible to reload the source file of such a > ruby class during the execution of my application? This would make > a fine scenario for rapid-turnaround changes. > > Frank > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through > log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD > SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Frank I. <ill...@ma...> - 2005-12-10 11:20:10
|
Hi, I am using ruby classes that are derived from Cocoa classes. Does anybody know if it is possible to reload the source file of such a ruby class during the execution of my application? This would make a fine scenario for rapid-turnaround changes. Frank |
From: kimura wataru<ki...@us...> - 2005-12-09 15:42:51
|
Hi, When environment DYLD_PRINT_LIBRARIES is set, the dynamic linker writes paths of loaded libraries to standard output. ex) zsh% DYLD_PRINT_LIBRARIES=1 ./MyApp.app/Contents/MacOS/MyApp 2>&1 | grep RubyCocoa dyld: loaded: /Library/Frameworks/RubyCocoa.framework/Versions/A/RubyCocoa Fri, Dec 9, 2005 12:29:02 AM, Dave Howell wrote: > >On Dec 8, 2005, at 23:52, Dave Howell wrote: > >sudo rm -R ~/Library/Frameworks/RubyCocoa.framework > > >Which just leaves the question of which program, when, installed the >wrong version of the framework in my *user* /Library/Frameworks folder >. . . . . > |
From: Jonathan P. <jp...@dc...> - 2005-12-09 12:29:45
|
On 9 Dec 2005, at 12:23, Neil Stevens wrote: >> def addClicked >> # @data is the array used in my table view data source methods >> @data << 'URL' >> # @view is the view, now that we added a row, we notify it >> # that we did >> @view.noteNumberOfRowsChanged Does this mean the problem is now resolved? Cheers, Jonathan |
From: Jonathan P. <jp...@dc...> - 2005-12-09 12:27:49
|
On 9 Dec 2005, at 12:22, Anne G wrote: > This tutorial used to run on the rubycocoa binary for > panther. It now gives me an error message > Can't open input server /Library/InputManagers/SIMBL > > Is that a problem with this program no longer running on > rubycocoa or is it a problem with my installation of > rubycocoa? I don't think that's to do with RubyCocoa. Sounds like you've got some application enhancement software installed that uses the SIMBL plugin manager [1]. Perhaps something is going wrong with whatever thing is installed? [1] http://culater.net/software/SIMBL/SIMBL.php |
From: Neil S. <ne...@ha...> - 2005-12-09 12:23:41
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Neil Stevens wrote: > def addClicked > # @data is the array used in my table view data source methods > @data << 'URL' > # @view is the view, now that we added a row, we notify it > # that we did > @view.noteNumberOfRowsChanged > > # NOW I select the last row, and begin editing it, > # because I know it is the new row. > row = @urls.size - 1 Sorry, that should read @data.size - 1, I missed one rename when I simplified the variable names for the example. > indexSet = OSX::NSIndexSet.indexSetWithIndex(row) > @view.selectRowIndexes_byExtendingSelection(indexSet, false) > @view.editColumn_row_withEvent_select(0, row, nil, true) > end - -- Neil Stevens - ne...@ha... 'A republic, if you can keep it.' -- Benjamin Franklin -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) iD8DBQFDmXdIf7mnligQOmERAjIuAJ9BZJeWwX4i5nDUYQLfF9N9Tqw73gCgko2t zrV9poJWzZKS1sGn4wDIeSc= =7ava -----END PGP SIGNATURE----- |
From: Anne G <an...@wj...> - 2005-12-09 12:22:46
|
Hi I am running tiger 10.4.3 with the ruby 1.8.3 which comes with it. I downloaded the binary package for tiger RubyCocoa-0.4.2-tiger.dmg and it seemed to install fine. I tried to run the rubycocoa tutorial (as downloaded from the end of the tutorial) from http://www.macdevcenter.com/pub/a/mac/2004/10/12/cocoa.html?page=3 This tutorial used to run on the rubycocoa binary for panther. It now gives me an error message Can't open input server /Library/InputManagers/SIMBL Is that a problem with this program no longer running on rubycocoa or is it a problem with my installation of rubycocoa? thanks for your help anne |
From: Neil S. <ne...@ha...> - 2005-12-09 12:21:48
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Steven D.Arnold wrote: > I want > the _next_ row to become editable, allowing the user to then type in a > new value that wasn't previously in the list. I do something like this: def addClicked # @data is the array used in my table view data source methods @data << 'URL' # @view is the view, now that we added a row, we notify it # that we did @view.noteNumberOfRowsChanged # NOW I select the last row, and begin editing it, # because I know it is the new row. row = @urls.size - 1 indexSet = OSX::NSIndexSet.indexSetWithIndex(row) @view.selectRowIndexes_byExtendingSelection(indexSet, false) @view.editColumn_row_withEvent_select(0, row, nil, true) end - -- Neil Stevens - ne...@ha... 'A republic, if you can keep it.' -- Benjamin Franklin -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) iD8DBQFDmXbVf7mnligQOmERAmL9AKCad6R40RiO0rfEBRXeD45i3qLcygCbBhrk mIGs+8H6d1ARswvmO1Qho24= =uwoj -----END PGP SIGNATURE----- |
From: Jonathan P. <jp...@dc...> - 2005-12-09 10:22:53
|
On 9 Dec 2005, at 8:29, Dave Howell wrote: > sudo rm -R ~/Library/Frameworks/RubyCocoa.framework > > Which just leaves the question of which program, when, installed > the wrong version of the framework in my *user* /Library/Frameworks > folder . . . . . Phew! Good luck with 0.4.2 :) |
From: Jonathan P. <jp...@dc...> - 2005-12-09 10:20:32
|
On 9 Dec 2005, at 6:55, Steven D.Arnold wrote: > Any idea what might be going on here? BTW, very similar logic > works in Python using PyObjC. I don't see anywhere in your code where you add a new row to the NSTableView. The error you're seeing occurs because the row being asked for doesn't exist. Is your NSTableView populated using a datasource or bindings? With a datasource, I think you may have to add a prototype element to the datasource and call tableView.reloadData. After that, you can hopefully select the new row. With bindings, you add a new row by going through the NSTableView's NSArrayController (you can bind insert: directly to a button's action). Can you give an example of the PyObjC code that works? Cheers, Jonathan |
From: Dave H. <gr...@gr...> - 2005-12-09 08:29:12
|
On Dec 8, 2005, at 23:52, Dave Howell wrote: > > On Dec 8, 2005, at 4:00, Jonathan Paisley wrote: > >> >> Try removing /Library/Frameworks/RubyCocoa.framework altogether and >> rerunning the source install. > > sudo rm -R /Library/Frameworks/RubyCocoa.framework > sudo ruby install.rb install > > Attempt to run "test" > "can't open library: /usr/lib/libruby.1.dylib (No such file or > directory, errno = 2)" Eureka. Ahem... sudo rm -R ~/Library/Frameworks/RubyCocoa.framework Which just leaves the question of which program, when, installed the wrong version of the framework in my *user* /Library/Frameworks folder . . . . . |