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: kimura w. <ki...@us...> - 2008-02-09 00:56:35
|
Hi, It works for me on 10.5.1. LSEnvironment is available for apps launched via Launch Service. - double-click in Finder - launch with "open" command LSEnvironment is not available without Launch Service. - "Run" on Xcode - execute YourApp.app/Contents/MacOS/YourApp directly On Thu, 7 Feb 2008 13:01:14 -0600, Brian Marick wrote: > Using RubyCocoa from Leopard (10.5.1) : > > You can declare environment variables in a Cocoa app's Info.plist file > like this: > > <key>LSEnvironment</key> > <dict> > <key>VEX</key> > <string>acious!</string> > </dict> > > In an Objective-C app, that value carries over into the environment: > > NSDictionary *env = [[NSProcessInfo processInfo] environment]; > NSLog(@"====Here is the value of VEX in the processInfo > environment: %@", > [env objectForKey:@"VEX"]); -- kimura wataru |
From: Brian M. <ma...@ex...> - 2008-02-08 21:17:18
|
I'm writing a book on RubyCocoa for the Pragmatic Bookshelf, publisher of many fine titles. <http://www.pragprog.com/titles> I'm ready for people to take a look at a chapter. It's actually the second chapter. The preceding introduction, covering prerequisites, the general plan of the book, its goals, what "Cocoa" is, etc. -- that will probably be written last. But to orient yourselves: - I assume you know Ruby, but nothing about Objective-C, Cocoa, or building apps on the Mac. - Rather than build the exposition from the outside-in, teaching you first how to draw user interfaces, I'm working from Ruby up. I start with Ruby, then begin adding Cocoa ideas and tools onto it. - Especially in the beginning of the book, I want people to start changing code and seeing what happens. Might as well take advantage of Ruby's fast edit-run loop. The chapter and associated code are distributed as a disk image: http://www.exampler.com/tmp/drafts/draft-of-2008-02-08.dmg What am I looking for? Don't bother with typos, misspellings, grammar, awkwardly-placed figures, and the like: those will all get changed later. I'm interested in two things: 1. Did the approach work for you? Did this chapter flow in a pleasing and sensible way? Is there information inexplicably missing? 2. Where did you get confused or stuck, in either the text or the "try this yourself" sections? Why? What would have helped? Thanks. Further announcements will go only to the mailing list: http://groups.google.com/group/rubycocoa-book ----- Brian Marick, independent consultant Mostly on agile methods with a testing slant www.exampler.com, www.exampler.com/blog, www.twitter.com/marick |
From: Brian M. <ma...@ex...> - 2008-02-07 19:01:57
|
Using RubyCocoa from Leopard (10.5.1) : You can declare environment variables in a Cocoa app's Info.plist file like this: <key>LSEnvironment</key> <dict> <key>VEX</key> <string>acious!</string> </dict> In an Objective-C app, that value carries over into the environment: NSDictionary *env = [[NSProcessInfo processInfo] environment]; NSLog(@"====Here is the value of VEX in the processInfo environment: %@", [env objectForKey:@"VEX"]); NSDictionary *lsEnv = [[NSBundle mainBundle] objectForInfoDictionaryKey: @"LSEnvironment"]; NSLog(@"====Here is the value of VEX from the Info.plist environment: %@", [lsEnv objectForKey:@"VEX"]); Feb 7 12:34:56 frex Test[1660]: ====Here is the value of VEX in the processInfo environment: acious! Feb 7 12:34:56 frex Test[1660]: ====Here is the value of VEX from the Info.plist environment: acious! However, the value from Info.plist doesn't seem to make it into ENV. More surprisingly, it doesn't make it into the Cocoa processInfo environment: $stderr.puts "==== Here is the value of VEX in the environment:" $stderr.puts ENV['VEX'].inspect $stderr.puts "==== The value of VEX in the processInfo environment:" cocoa_env = NSProcessInfo.processInfo.environment $stderr.puts cocoa_env.objectForKey("VEX") $stderr.puts "==== The value of VEX in Info.plist:" plist_env = NSBundle.mainBundle.objectForInfoDictionaryKey("LSEnvironment") $stderr.puts plist_env.objectForKey("VEX") Feb 7 12:49:45 frex [0x0-0xc70c7].com.exampler.StatusbarApp[1689]: ==== Here is the value of VEX in the environment: Feb 7 12:49:45 frex [0x0-0xc70c7].com.exampler.StatusbarApp[1689]: nil Feb 7 12:49:45 frex [0x0-0xc70c7].com.exampler.StatusbarApp[1689]: ==== The value of VEX in the processInfo environment: Feb 7 12:49:45 frex [0x0-0xc70c7].com.exampler.StatusbarApp[1689]: nil Feb 7 12:49:45 frex [0x0-0xc70c7].com.exampler.StatusbarApp[1689]: ==== The value of VEX in Info.plist: Feb 7 12:49:45 frex [0x0-0xc70c7].com.exampler.StatusbarApp[1689]: acious! ----- Brian Marick, independent consultant Mostly on agile methods with a testing slant www.exampler.com, www.exampler.com/blog, www.twitter.com/marick |
From: Geoffrey L. <geo...@ov...> - 2008-02-07 14:32:18
|
, I ended up changing my path to point pick up /usr/bin/ruby and then just using the package from sf. everything seems cool thanks very much Satoshi On 6-Feb-08, at 10:35 PM, Satoshi Nakagawa wrote: > Ah, these errors can be explained by it. > Upgrading 10.4 to 10.5 leaves old binaries as is. > So your /usr/local/ruby seems for 10.4. > > How about /usr/bin/ruby? > > $ /usr/bin/ruby install.rb config > $ /usr/bin/ruby install.rb setup > > -- > Satoshi Nakagawa > > On 2008/02/07, at 11:59, Geoffrey Longman wrote: > >> hmm, "About this Mac" says 10.5.1 >> >> this is a MacBook Pro purchased 1st week of December >> >> came with TIger installed and an upgrade disk >> >> 1st thing I did was upgrade to Leopard. >> >> I will check out MacPorts! >> >> Geoff >> >> >> On 6-Feb-08, at 9:51 PM, Satoshi Nakagawa wrote: >> >>> I noticed, >>> >>> ruby-header-dir /usr/local/lib/ruby/1.8/universal-darwin8.0 >>> macosx-deployment-target 10.5 >>> >>> your ruby seems for 10.4 even though target is 10.5. >>> Which version of OSX you are using? >>> >>> About test failures around thread, you should apply a patch to ruby. >>> >>> http://www.opensource.apple.com/darwinsource/10.5.1/ruby-67/patches/ruby_thread_hooks.diff >>> >>> I recommend MacPorts than building ruby by yourself. It deals with >>> it >>> well by default. >>> >>> -- >>> Satoshi Nakagawa >>> >>> On 2008/02/07, at 11:18, Geoffrey Longman wrote: >>> >>>> Thanks for the quick reply! >>>> >>>> config and setup went smoothly this time. >>>> >>>> when I did the tests I'm getting 41 failures. >>>> >>>> looks like they are variations of these two: >>>> >>>> 1) Error: >>>> test_array_of_activerecords_to_proxies >>>> (TC_ActiveRecordClassExtensions): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `new_with_ocid' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxy' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `map' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> ./tc_active_record.rb:122:in >>>> `test_array_of_activerecords_to_proxies' >>>> >>>> 39) Failure: >>>> test_existing_threads_before_rubycocoa(TC_Thread) >>>> [./tc_thread.rb:79:in `assert_threads_supported' >>>> ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: >>>> no runtime support for Ruby threads. >>>> <false> is not true. >>>> >>>> >>>> but I'll append the complete list to the end of this message. >>>> >>>> Geoff >>>> >>>> Macintosh-3:src glongman$ ruby install.rb test >>>> install.rb: entering test phase... >>>> ---> tests >>>> extention ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ext/ >>>> rubycocoa/rubycocoa.bundle >>>> framework ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ >>>> framework/build/Default/RubyCocoa.framework/Versions/A/RubyCocoa >>>> "/usr/local/bin/ruby" -I../ext/rubycocoa -I../lib testall.rb >>>> make: `objc_test.bundle' is up to date. >>>> Loaded suite testall >>>> Started >>>> ..............................EE >>>> .EEEEEEEEEEEEEEEEEEEE..................EE..............2008-02-06 >>>> 21:12:30.480 ruby[2994:613] *** -[ExceptionTest ns:raise]: >>>> unrecognized selector sent to instance 0x2a19580 >>>> F2008-02-06 21:12:30.549 ruby[2994:613] *** -[ExceptionTest >>>> testExceptionRaise]: unrecognized selector sent to instance >>>> 0x2a7cb50 >>>> E2008-02-06 21:12:30.550 ruby[2994:613] *** -[ExceptionTest >>>> rb:raise]: >>>> unrecognized selector sent to instance 0x2a8b040 >>>> F >>>> .....................................................................................................................................E >>>> ..E.2008-02-06 21:12:31.023 ruby[2994:613] *** -[RigHelper name]: >>>> unrecognized selector sent to instance 0xb6c7ef0 >>>> E >>>> ...................................................................................................................E >>>> .............................E..2008-02-06 21:12:31.937 >>>> ruby[2994:613] >>>> *** -[CalledClass calledFoo:]: unrecognized selector sent to >>>> instance >>>> 0x23cd370 >>>> E..E..F...EFFF.E...........................F................ >>>> Finished in 3.081648 seconds. >>>> >>>> 1) Error: >>>> test_array_of_activerecords_to_proxies >>>> (TC_ActiveRecordClassExtensions): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `new_with_ocid' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxy' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `map' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> ./tc_active_record.rb:122:in >>>> `test_array_of_activerecords_to_proxies' >>>> >>>> 2) Error: >>>> test_array_of_proxies_to_original_activerecords >>>> (TC_ActiveRecordClassExtensions): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxy' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `map' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> ./tc_active_record.rb:126:in >>>> `test_array_of_proxies_to_original_activerecords' >>>> >>>> 3) Error: >>>> test_find_all(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxy' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `map' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:378:in `test_find_all' >>>> >>>> 4) Error: >>>> test_find_by(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 5) Error: >>>> test_find_first(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 6) Error: >>>> test_generated_instance_methods_on_proxy(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 7) Error: >>>> test_methods_from_record(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 8) Error: >>>> test_proxy_initWithAttributes(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 9) Error: >>>> test_proxy_initWithRecord(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 10) Error: >>>> test_proxy_init_should_not_create_a_new_record >>>> (TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 11) Error: >>>> test_proxy_is_association?(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 12) Error: >>>> test_proxy_method_forwarding(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 13) Error: >>>> test_proxy_set_and_get_value_for_key(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 14) Error: >>>> test_proxy_to_model_class(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 15) Error: >>>> test_proxy_validate_value_for_key_with_error(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 16) Error: >>>> test_should_always_return_the_same_cached_proxy_for_a_record_object >>>> (TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 17) Error: >>>> test_should_be_able_to_compare_proxies(TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 18) Error: >>>> test_should_only_define_all_the_proxy_methods_once >>>> (TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 19) Error: >>>> test_should_return_a_proxy_when_requesting_a_belongs_to_associated_record >>>> (TC_ActiveRecordProxy): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:240:in `setup' >>>> >>>> 20) Error: >>>> test_should_destroy_a_record_on_remove >>>> (TC_ActiveRecordSetController): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxy' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `map' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:150:in `setup' >>>> >>>> 21) Error: >>>> test_should_destroy_multiple_records_on_remove >>>> (TC_ActiveRecordSetController): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxy' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `map' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:150:in `setup' >>>> >>>> 22) Error: >>>> test_should_instantiate_and_save_a_record_on_newObject >>>> (TC_ActiveRecordSetController): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `alloc' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>>> `to_activerecord_proxy' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `map' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>>> `to_activerecord_proxies' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>>> `find' >>>> ./tc_active_record.rb:150:in `setup' >>>> >>>> 23) Error: >>>> test_should_instantiate_but_not_save_a_record_on_newObject >>>> (TC_BelongsToActiveRecordSetController): >>>> NoMethodError: undefined method `reflect_on_all_associations' for >>>> NilClass >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>>> `is_association?' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>>> `initialize' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `method_missing' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:91:in >>>> `newObject' >>>> ./tc_active_record.rb:186:in >>>> `test_should_instantiate_but_not_save_a_record_on_newObject' >>>> ./tc_active_record.rb:72:in `assert_no_difference' >>>> ./tc_active_record.rb:185:in >>>> `test_should_instantiate_but_not_save_a_record_on_newObject' >>>> >>>> 24) Error: >>>> test_bool_type_conversions(TC_BoolTypeConversion): >>>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC >>>> selector >>>> `testBool', the method either doesn't exist or is private >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `method_missing' >>>> ./tc_bool.rb:97:in `do_conversion_tests' >>>> ./tc_bool.rb:95:in `each' >>>> ./tc_bool.rb:95:in `do_conversion_tests' >>>> ./tc_bool.rb:83:in `do_ruby_to_objc_conversion_tests' >>>> ./tc_bool.rb:48:in `test_bool_type_conversions' >>>> >>>> 25) Failure: >>>> test_indirect_ns_raise(TC_Exceptions) >>>> [./tc_exception.rb:53:in `check_nsexception' >>>> ./tc_exception.rb:70:in `test_indirect_ns_raise']: >>>> <"NSInvalidArgumentException - *** -[ExceptionTest ns:raise]: >>>> unrecognized selector sent to instance 0x2a19580"> expected to be >>>> =~ >>>> </ns_raise_name - ns_raise_reason/>. >>>> >>>> 26) Error: >>>> test_ns_rethrow(TC_Exceptions): >>>> NoMethodError: undefined method `__ocid__' for nil:NilClass >>>> ./tc_exception.rb:84:in `test_ns_rethrow' >>>> ./tc_exception.rb:92:in `with_suppress_backtrace_log' >>>> ./tc_exception.rb:81:in `test_ns_rethrow' >>>> >>>> 27) Failure: >>>> test_rb_raise(TC_Exceptions) [./tc_exception.rb:47]: >>>> <"rb_raise_message"> expected but was >>>> <"NSInvalidArgumentException - *** -[ExceptionTest rb:raise]: >>>> unrecognized selector sent to instance 0x2a8b040">. >>>> >>>> 28) Error: >>>> test_arg_retained(TC_OVMIX): >>>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC >>>> selector >>>> `setObject:', the method either doesn't exist or is private >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `method_missing' >>>> ./tc_ovmix.rb:186:in `test_arg_retained' >>>> >>>> 29) Error: >>>> test_objc_method(TC_OVMIX): >>>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC >>>> selector >>>> `foo1', the method either doesn't exist or is private >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `method_missing' >>>> ./tc_ovmix.rb:141:in `test_objc_method' >>>> >>>> 30) Error: >>>> test_rig(TC_OVMIX): >>>> OSX::OCException: NSInvalidArgumentException - *** -[RigHelper >>>> name]: >>>> unrecognized selector sent to instance 0xb6c7ef0 >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `method_missing' >>>> ./tc_ovmix.rb:137:in `test_rig' >>>> >>>> 31) Error: >>>> test_passbyref_subclass_methods(TC_PassByRef): >>>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC >>>> selector >>>> `passByRefObject:', the method either doesn't exist or is private >>>> ./tc_passbyref.rb:88:in `passByRefObject' >>>> ./tc_passbyref.rb:88:in `test_passbyref_subclass_methods' >>>> >>>> 32) Error: >>>> test_action(TC_SubClass): >>>> OSX::OCMessageSendException: Can't get Objective-C method signature >>>> for selector 'setFoo:' of receiver #<TestActionClass:0x1365776 >>>> class='TestActionClass' id=0x23c51a0> >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>>> `objc_send' >>>> ./tc_subclass.rb:165:in `test_action' >>>> ./tc_subclass.rb:165:in `test_action' >>>> >>>> 33) Error: >>>> test_objc_ruby_call(TC_SubClass): >>>> OSX::OCException: NSInvalidArgumentException - *** -[CalledClass >>>> calledFoo:]: unrecognized selector sent to instance 0x23cd370 >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `method_missing' >>>> ./tc_subclass.rb:190:in `test_objc_ruby_call' >>>> >>>> 34) Error: >>>> test_override(TC_SubClass): >>>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC >>>> selector >>>> `description', the method either doesn't exist or is private >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>>> `objc_send' >>>> ./tc_subclass.rb:103:in `test_override' >>>> >>>> 35) Failure: >>>> test_rbobject_nscopying(TC_SubClass) [./tc_subclass.rb:273]: >>>> <false> is not true. >>>> >>>> 36) Error: >>>> test_undo2(TC_SubClass): >>>> OSX::OCMessageSendException: Can't get Objective-C method signature >>>> for selector 'addFoo:' of receiver #<OSX::NSUndoManager:0x14384d2 >>>> class='NSUndoManager' id=0x24ab020> >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `ocm_send' >>>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>>> `method_missing' >>>> ./tc_subclass.rb:239:in `test_undo2' >>>> >>>> 37) Failure: >>>> test_autorelease(TC_Thread) >>>> [./tc_thread.rb:79:in `assert_threads_supported' >>>> ./tc_thread.rb:100:in `test_autorelease']: >>>> no runtime support for Ruby threads. >>>> <false> is not true. >>>> >>>> 38) Failure: >>>> test_exceptions(TC_Thread) >>>> [./tc_thread.rb:79:in `assert_threads_supported' >>>> ./tc_thread.rb:139:in `test_exceptions']: >>>> no runtime support for Ruby threads. >>>> <false> is not true. >>>> >>>> 39) Failure: >>>> test_existing_threads_before_rubycocoa(TC_Thread) >>>> [./tc_thread.rb:79:in `assert_threads_supported' >>>> ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: >>>> no runtime support for Ruby threads. >>>> <false> is not true. >>>> >>>> 40) Error: >>>> test_threaded_closure(TC_Thread): >>>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC >>>> selector >>>> `threaded', the method either doesn't exist or is private >>>> ./tc_thread.rb:75:in `callbackOnThreadRubyObject' >>>> ./tc_thread.rb:75:in `test_threaded_closure' >>>> >>>> 41) Failure: >>>> test_equality_of_a_objc_object_that_has_been_instantiated_from_a_nib >>>> (TC_UniqObject) [./tc_uniqobj.rb:96]: >>>> <false> is not true. >>>> >>>> 437 tests, 2726 assertions, 7 failures, 34 errors >>>> <--- tests >>>> ---> framework >>>> ---> tool >>>> <--- tool >>>> <--- framework >>>> install.rb: test done. >>>> >>>> >>>> On 6-Feb-08, at 8:32 PM, Satoshi Nakagawa wrote: >>>> >>>>> Hi, >>>>> >>>>>> ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing >>>>>> required >>>>> architecture x86_64 in file >>>>> >>>>> It seems that you need to make /usr/local/lib/libruby also x86_64. >>>>> If you doesn't need x86_64, try --build-universal=no like: >>>>> >>>>> $ ruby install.rb config --build-universal=no >>>>> $ ruby install.rb setup >>>>> >>>>> -- >>>>> Satoshi Nakagawa >>>>> >>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> Rubycocoa-talk mailing list >>>> Rub...@li... >>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>>> >>> >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> >> Geoff Longman - Overlay TV - http://www.overlay.tv - >> glo...@ov... - 613 761 6152 ext 243 >> >> >> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk Geoff Longman - Overlay TV - http://www.overlay.tv - glo...@ov... - 613 761 6152 ext 243 |
From: Ferhat A. <fer...@ya...> - 2008-02-07 09:03:59
|
Yesterday I have reinstalled Leopard with the erase option to have a virgin leopard to work with rubycocoa. Using rubycocoa on an upgraded system instead a new installation with erase was painful. At least for me. Even the Rubycocoa support in IB was leaking. Now it works fine! Ferhat ----- Original Message ---- From: Satoshi Nakagawa <sna...@in...> To: rub...@li... Sent: Thursday, February 7, 2008 4:35:34 AM Subject: Re: [Rubycocoa-talk] unable to build from source on 10.5.1 Ah, these errors can be explained by it. Upgrading 10.4 to 10.5 leaves old binaries as is. So your /usr/local/ruby seems for 10.4. How about /usr/bin/ruby? $ /usr/bin/ruby install.rb config $ /usr/bin/ruby install.rb setup -- Satoshi Nakagawa On 2008/02/07, at 11:59, Geoffrey Longman wrote: > hmm, "About this Mac" says 10.5.1 > > this is a MacBook Pro purchased 1st week of December > > came with TIger installed and an upgrade disk > > 1st thing I did was upgrade to Leopard. > > I will check out MacPorts! > > Geoff > > > On 6-Feb-08, at 9:51 PM, Satoshi Nakagawa wrote: > >> I noticed, >> >> ruby-header-dir /usr/local/lib/ruby/1.8/universal-darwin8.0 >> macosx-deployment-target 10.5 >> >> your ruby seems for 10.4 even though target is 10.5. >> Which version of OSX you are using? >> >> About test failures around thread, you should apply a patch to ruby. >> >> http://www.opensource.apple.com/darwinsource/10.5.1/ruby-67/patches/ruby_thread_hooks.diff >> >> I recommend MacPorts than building ruby by yourself. It deals with it >> well by default. >> >> -- >> Satoshi Nakagawa >> >> On 2008/02/07, at 11:18, Geoffrey Longman wrote: >> >>> Thanks for the quick reply! >>> >>> config and setup went smoothly this time. >>> >>> when I did the tests I'm getting 41 failures. >>> >>> looks like they are variations of these two: >>> >>> 1) Error: >>> test_array_of_activerecords_to_proxies >>> (TC_ActiveRecordClassExtensions): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `new_with_ocid' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> ../tc_active_record.rb:122:in >>> `test_array_of_activerecords_to_proxies' >>> >>> 39) Failure: >>> test_existing_threads_before_rubycocoa(TC_Thread) >>> [./tc_thread.rb:79:in `assert_threads_supported' >>> ../tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: >>> no runtime support for Ruby threads. >>> <false> is not true. >>> >>> >>> but I'll append the complete list to the end of this message. >>> >>> Geoff >>> >>> Macintosh-3:src glongman$ ruby install.rb test >>> install.rb: entering test phase... >>> ---> tests >>> extention ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ext/ >>> rubycocoa/rubycocoa.bundle >>> framework ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ >>> framework/build/Default/RubyCocoa.framework/Versions/A/RubyCocoa >>> "/usr/local/bin/ruby" -I../ext/rubycocoa -I../lib testall.rb >>> make: `objc_test.bundle' is up to date. >>> Loaded suite testall >>> Started >>> ...............................EE >>> ..EEEEEEEEEEEEEEEEEEEE..................EE..............2008-02-06 >>> 21:12:30.480 ruby[2994:613] *** -[ExceptionTest ns:raise]: >>> unrecognized selector sent to instance 0x2a19580 >>> F2008-02-06 21:12:30.549 ruby[2994:613] *** -[ExceptionTest >>> testExceptionRaise]: unrecognized selector sent to instance >>> 0x2a7cb50 >>> E2008-02-06 21:12:30.550 ruby[2994:613] *** -[ExceptionTest >>> rb:raise]: >>> unrecognized selector sent to instance 0x2a8b040 >>> F >>> ......................................................................................................................................E >>> ...E.2008-02-06 21:12:31.023 ruby[2994:613] *** -[RigHelper name]: >>> unrecognized selector sent to instance 0xb6c7ef0 >>> E >>> ....................................................................................................................E >>> ..............................E..2008-02-06 21:12:31.937 >>> ruby[2994:613] >>> *** -[CalledClass calledFoo:]: unrecognized selector sent to >>> instance >>> 0x23cd370 >>> E..E..F...EFFF.E...........................F................ >>> Finished in 3.081648 seconds. >>> >>> 1) Error: >>> test_array_of_activerecords_to_proxies >>> (TC_ActiveRecordClassExtensions): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `new_with_ocid' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> ../tc_active_record.rb:122:in >>> `test_array_of_activerecords_to_proxies' >>> >>> 2) Error: >>> test_array_of_proxies_to_original_activerecords >>> (TC_ActiveRecordClassExtensions): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> ../tc_active_record.rb:126:in >>> `test_array_of_proxies_to_original_activerecords' >>> >>> 3) Error: >>> test_find_all(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:378:in `test_find_all' >>> >>> 4) Error: >>> test_find_by(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 5) Error: >>> test_find_first(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 6) Error: >>> test_generated_instance_methods_on_proxy(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 7) Error: >>> test_methods_from_record(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 8) Error: >>> test_proxy_initWithAttributes(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 9) Error: >>> test_proxy_initWithRecord(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 10) Error: >>> test_proxy_init_should_not_create_a_new_record >>> (TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 11) Error: >>> test_proxy_is_association?(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 12) Error: >>> test_proxy_method_forwarding(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 13) Error: >>> test_proxy_set_and_get_value_for_key(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 14) Error: >>> test_proxy_to_model_class(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 15) Error: >>> test_proxy_validate_value_for_key_with_error(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 16) Error: >>> test_should_always_return_the_same_cached_proxy_for_a_record_object >>> (TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 17) Error: >>> test_should_be_able_to_compare_proxies(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 18) Error: >>> test_should_only_define_all_the_proxy_methods_once >>> (TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 19) Error: >>> test_should_return_a_proxy_when_requesting_a_belongs_to_associated_record >>> (TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:240:in `setup' >>> >>> 20) Error: >>> test_should_destroy_a_record_on_remove >>> (TC_ActiveRecordSetController): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:150:in `setup' >>> >>> 21) Error: >>> test_should_destroy_multiple_records_on_remove >>> (TC_ActiveRecordSetController): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:150:in `setup' >>> >>> 22) Error: >>> test_should_instantiate_and_save_a_record_on_newObject >>> (TC_ActiveRecordSetController): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ../tc_active_record.rb:150:in `setup' >>> >>> 23) Error: >>> test_should_instantiate_but_not_save_a_record_on_newObject >>> (TC_BelongsToActiveRecordSetController): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:91:in >>> `newObject' >>> ../tc_active_record.rb:186:in >>> `test_should_instantiate_but_not_save_a_record_on_newObject' >>> ../tc_active_record.rb:72:in `assert_no_difference' >>> ../tc_active_record.rb:185:in >>> `test_should_instantiate_but_not_save_a_record_on_newObject' >>> >>> 24) Error: >>> test_bool_type_conversions(TC_BoolTypeConversion): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `testBool', the method either doesn't exist or is private >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ../tc_bool.rb:97:in `do_conversion_tests' >>> ../tc_bool.rb:95:in `each' >>> ../tc_bool.rb:95:in `do_conversion_tests' >>> ../tc_bool.rb:83:in `do_ruby_to_objc_conversion_tests' >>> ../tc_bool.rb:48:in `test_bool_type_conversions' >>> >>> 25) Failure: >>> test_indirect_ns_raise(TC_Exceptions) >>> [./tc_exception.rb:53:in `check_nsexception' >>> ../tc_exception.rb:70:in `test_indirect_ns_raise']: >>> <"NSInvalidArgumentException - *** -[ExceptionTest ns:raise]: >>> unrecognized selector sent to instance 0x2a19580"> expected to be =~ >>> </ns_raise_name - ns_raise_reason/>. >>> >>> 26) Error: >>> test_ns_rethrow(TC_Exceptions): >>> NoMethodError: undefined method `__ocid__' for nil:NilClass >>> ../tc_exception.rb:84:in `test_ns_rethrow' >>> ../tc_exception.rb:92:in `with_suppress_backtrace_log' >>> ../tc_exception.rb:81:in `test_ns_rethrow' >>> >>> 27) Failure: >>> test_rb_raise(TC_Exceptions) [./tc_exception.rb:47]: >>> <"rb_raise_message"> expected but was >>> <"NSInvalidArgumentException - *** -[ExceptionTest rb:raise]: >>> unrecognized selector sent to instance 0x2a8b040">. >>> >>> 28) Error: >>> test_arg_retained(TC_OVMIX): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `setObject:', the method either doesn't exist or is private >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ../tc_ovmix.rb:186:in `test_arg_retained' >>> >>> 29) Error: >>> test_objc_method(TC_OVMIX): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `foo1', the method either doesn't exist or is private >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ../tc_ovmix.rb:141:in `test_objc_method' >>> >>> 30) Error: >>> test_rig(TC_OVMIX): >>> OSX::OCException: NSInvalidArgumentException - *** -[RigHelper >>> name]: >>> unrecognized selector sent to instance 0xb6c7ef0 >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ../tc_ovmix.rb:137:in `test_rig' >>> >>> 31) Error: >>> test_passbyref_subclass_methods(TC_PassByRef): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `passByRefObject:', the method either doesn't exist or is private >>> ../tc_passbyref.rb:88:in `passByRefObject' >>> ../tc_passbyref.rb:88:in `test_passbyref_subclass_methods' >>> >>> 32) Error: >>> test_action(TC_SubClass): >>> OSX::OCMessageSendException: Can't get Objective-C method signature >>> for selector 'setFoo:' of receiver #<TestActionClass:0x1365776 >>> class='TestActionClass' id=0x23c51a0> >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>> `objc_send' >>> ../tc_subclass.rb:165:in `test_action' >>> ../tc_subclass.rb:165:in `test_action' >>> >>> 33) Error: >>> test_objc_ruby_call(TC_SubClass): >>> OSX::OCException: NSInvalidArgumentException - *** -[CalledClass >>> calledFoo:]: unrecognized selector sent to instance 0x23cd370 >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ../tc_subclass.rb:190:in `test_objc_ruby_call' >>> >>> 34) Error: >>> test_override(TC_SubClass): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `description', the method either doesn't exist or is private >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>> `objc_send' >>> ../tc_subclass.rb:103:in `test_override' >>> >>> 35) Failure: >>> test_rbobject_nscopying(TC_SubClass) [./tc_subclass.rb:273]: >>> <false> is not true. >>> >>> 36) Error: >>> test_undo2(TC_SubClass): >>> OSX::OCMessageSendException: Can't get Objective-C method signature >>> for selector 'addFoo:' of receiver #<OSX::NSUndoManager:0x14384d2 >>> class='NSUndoManager' id=0x24ab020> >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ../tc_subclass.rb:239:in `test_undo2' >>> >>> 37) Failure: >>> test_autorelease(TC_Thread) >>> [./tc_thread.rb:79:in `assert_threads_supported' >>> ../tc_thread.rb:100:in `test_autorelease']: >>> no runtime support for Ruby threads. >>> <false> is not true. >>> >>> 38) Failure: >>> test_exceptions(TC_Thread) >>> [./tc_thread.rb:79:in `assert_threads_supported' >>> ../tc_thread.rb:139:in `test_exceptions']: >>> no runtime support for Ruby threads. >>> <false> is not true. >>> >>> 39) Failure: >>> test_existing_threads_before_rubycocoa(TC_Thread) >>> [./tc_thread.rb:79:in `assert_threads_supported' >>> ../tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: >>> no runtime support for Ruby threads. >>> <false> is not true. >>> >>> 40) Error: >>> test_threaded_closure(TC_Thread): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `threaded', the method either doesn't exist or is private >>> ../tc_thread.rb:75:in `callbackOnThreadRubyObject' >>> ../tc_thread.rb:75:in `test_threaded_closure' >>> >>> 41) Failure: >>> test_equality_of_a_objc_object_that_has_been_instantiated_from_a_nib >>> (TC_UniqObject) [./tc_uniqobj.rb:96]: >>> <false> is not true. >>> >>> 437 tests, 2726 assertions, 7 failures, 34 errors >>> <--- tests >>> ---> framework >>> ---> tool >>> <--- tool >>> <--- framework >>> install.rb: test done. >>> >>> >>> On 6-Feb-08, at 8:32 PM, Satoshi Nakagawa wrote: >>> >>>> Hi, >>>> >>>>> ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing >>>>> required >>>> architecture x86_64 in file >>>> >>>> It seems that you need to make /usr/local/lib/libruby also x86_64. >>>> If you doesn't need x86_64, try --build-universal=no like: >>>> >>>> $ ruby install.rb config --build-universal=no >>>> $ ruby install.rb setup >>>> >>>> -- >>>> Satoshi Nakagawa >>>> >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > Geoff Longman - Overlay TV - http://www.overlay.tv - > glo...@ov... - 613 761 6152 ext 243 > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Rubycocoa-talk mailing list Rub...@li... https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk ____________________________________________________________________________________ Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs |
From: Satoshi N. <sna...@in...> - 2008-02-07 03:37:09
|
Ah, these errors can be explained by it. Upgrading 10.4 to 10.5 leaves old binaries as is. So your /usr/local/ruby seems for 10.4. How about /usr/bin/ruby? $ /usr/bin/ruby install.rb config $ /usr/bin/ruby install.rb setup -- Satoshi Nakagawa On 2008/02/07, at 11:59, Geoffrey Longman wrote: > hmm, "About this Mac" says 10.5.1 > > this is a MacBook Pro purchased 1st week of December > > came with TIger installed and an upgrade disk > > 1st thing I did was upgrade to Leopard. > > I will check out MacPorts! > > Geoff > > > On 6-Feb-08, at 9:51 PM, Satoshi Nakagawa wrote: > >> I noticed, >> >> ruby-header-dir /usr/local/lib/ruby/1.8/universal-darwin8.0 >> macosx-deployment-target 10.5 >> >> your ruby seems for 10.4 even though target is 10.5. >> Which version of OSX you are using? >> >> About test failures around thread, you should apply a patch to ruby. >> >> http://www.opensource.apple.com/darwinsource/10.5.1/ruby-67/patches/ruby_thread_hooks.diff >> >> I recommend MacPorts than building ruby by yourself. It deals with it >> well by default. >> >> -- >> Satoshi Nakagawa >> >> On 2008/02/07, at 11:18, Geoffrey Longman wrote: >> >>> Thanks for the quick reply! >>> >>> config and setup went smoothly this time. >>> >>> when I did the tests I'm getting 41 failures. >>> >>> looks like they are variations of these two: >>> >>> 1) Error: >>> test_array_of_activerecords_to_proxies >>> (TC_ActiveRecordClassExtensions): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `new_with_ocid' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> ./tc_active_record.rb:122:in >>> `test_array_of_activerecords_to_proxies' >>> >>> 39) Failure: >>> test_existing_threads_before_rubycocoa(TC_Thread) >>> [./tc_thread.rb:79:in `assert_threads_supported' >>> ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: >>> no runtime support for Ruby threads. >>> <false> is not true. >>> >>> >>> but I'll append the complete list to the end of this message. >>> >>> Geoff >>> >>> Macintosh-3:src glongman$ ruby install.rb test >>> install.rb: entering test phase... >>> ---> tests >>> extention ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ext/ >>> rubycocoa/rubycocoa.bundle >>> framework ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ >>> framework/build/Default/RubyCocoa.framework/Versions/A/RubyCocoa >>> "/usr/local/bin/ruby" -I../ext/rubycocoa -I../lib testall.rb >>> make: `objc_test.bundle' is up to date. >>> Loaded suite testall >>> Started >>> ..............................EE >>> .EEEEEEEEEEEEEEEEEEEE..................EE..............2008-02-06 >>> 21:12:30.480 ruby[2994:613] *** -[ExceptionTest ns:raise]: >>> unrecognized selector sent to instance 0x2a19580 >>> F2008-02-06 21:12:30.549 ruby[2994:613] *** -[ExceptionTest >>> testExceptionRaise]: unrecognized selector sent to instance >>> 0x2a7cb50 >>> E2008-02-06 21:12:30.550 ruby[2994:613] *** -[ExceptionTest >>> rb:raise]: >>> unrecognized selector sent to instance 0x2a8b040 >>> F >>> .....................................................................................................................................E >>> ..E.2008-02-06 21:12:31.023 ruby[2994:613] *** -[RigHelper name]: >>> unrecognized selector sent to instance 0xb6c7ef0 >>> E >>> ...................................................................................................................E >>> .............................E..2008-02-06 21:12:31.937 >>> ruby[2994:613] >>> *** -[CalledClass calledFoo:]: unrecognized selector sent to >>> instance >>> 0x23cd370 >>> E..E..F...EFFF.E...........................F................ >>> Finished in 3.081648 seconds. >>> >>> 1) Error: >>> test_array_of_activerecords_to_proxies >>> (TC_ActiveRecordClassExtensions): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `new_with_ocid' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> ./tc_active_record.rb:122:in >>> `test_array_of_activerecords_to_proxies' >>> >>> 2) Error: >>> test_array_of_proxies_to_original_activerecords >>> (TC_ActiveRecordClassExtensions): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> ./tc_active_record.rb:126:in >>> `test_array_of_proxies_to_original_activerecords' >>> >>> 3) Error: >>> test_find_all(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:378:in `test_find_all' >>> >>> 4) Error: >>> test_find_by(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 5) Error: >>> test_find_first(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 6) Error: >>> test_generated_instance_methods_on_proxy(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 7) Error: >>> test_methods_from_record(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 8) Error: >>> test_proxy_initWithAttributes(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 9) Error: >>> test_proxy_initWithRecord(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 10) Error: >>> test_proxy_init_should_not_create_a_new_record >>> (TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 11) Error: >>> test_proxy_is_association?(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 12) Error: >>> test_proxy_method_forwarding(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 13) Error: >>> test_proxy_set_and_get_value_for_key(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 14) Error: >>> test_proxy_to_model_class(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 15) Error: >>> test_proxy_validate_value_for_key_with_error(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 16) Error: >>> test_should_always_return_the_same_cached_proxy_for_a_record_object >>> (TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 17) Error: >>> test_should_be_able_to_compare_proxies(TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 18) Error: >>> test_should_only_define_all_the_proxy_methods_once >>> (TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 19) Error: >>> test_should_return_a_proxy_when_requesting_a_belongs_to_associated_record >>> (TC_ActiveRecordProxy): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:240:in `setup' >>> >>> 20) Error: >>> test_should_destroy_a_record_on_remove >>> (TC_ActiveRecordSetController): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:150:in `setup' >>> >>> 21) Error: >>> test_should_destroy_multiple_records_on_remove >>> (TC_ActiveRecordSetController): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:150:in `setup' >>> >>> 22) Error: >>> test_should_instantiate_and_save_a_record_on_newObject >>> (TC_ActiveRecordSetController): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `alloc' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >>> `to_activerecord_proxy' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `map' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >>> `to_activerecord_proxies' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >>> `find' >>> ./tc_active_record.rb:150:in `setup' >>> >>> 23) Error: >>> test_should_instantiate_but_not_save_a_record_on_newObject >>> (TC_BelongsToActiveRecordSetController): >>> NoMethodError: undefined method `reflect_on_all_associations' for >>> NilClass >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >>> `is_association?' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >>> `initialize' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:91:in >>> `newObject' >>> ./tc_active_record.rb:186:in >>> `test_should_instantiate_but_not_save_a_record_on_newObject' >>> ./tc_active_record.rb:72:in `assert_no_difference' >>> ./tc_active_record.rb:185:in >>> `test_should_instantiate_but_not_save_a_record_on_newObject' >>> >>> 24) Error: >>> test_bool_type_conversions(TC_BoolTypeConversion): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `testBool', the method either doesn't exist or is private >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ./tc_bool.rb:97:in `do_conversion_tests' >>> ./tc_bool.rb:95:in `each' >>> ./tc_bool.rb:95:in `do_conversion_tests' >>> ./tc_bool.rb:83:in `do_ruby_to_objc_conversion_tests' >>> ./tc_bool.rb:48:in `test_bool_type_conversions' >>> >>> 25) Failure: >>> test_indirect_ns_raise(TC_Exceptions) >>> [./tc_exception.rb:53:in `check_nsexception' >>> ./tc_exception.rb:70:in `test_indirect_ns_raise']: >>> <"NSInvalidArgumentException - *** -[ExceptionTest ns:raise]: >>> unrecognized selector sent to instance 0x2a19580"> expected to be =~ >>> </ns_raise_name - ns_raise_reason/>. >>> >>> 26) Error: >>> test_ns_rethrow(TC_Exceptions): >>> NoMethodError: undefined method `__ocid__' for nil:NilClass >>> ./tc_exception.rb:84:in `test_ns_rethrow' >>> ./tc_exception.rb:92:in `with_suppress_backtrace_log' >>> ./tc_exception.rb:81:in `test_ns_rethrow' >>> >>> 27) Failure: >>> test_rb_raise(TC_Exceptions) [./tc_exception.rb:47]: >>> <"rb_raise_message"> expected but was >>> <"NSInvalidArgumentException - *** -[ExceptionTest rb:raise]: >>> unrecognized selector sent to instance 0x2a8b040">. >>> >>> 28) Error: >>> test_arg_retained(TC_OVMIX): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `setObject:', the method either doesn't exist or is private >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ./tc_ovmix.rb:186:in `test_arg_retained' >>> >>> 29) Error: >>> test_objc_method(TC_OVMIX): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `foo1', the method either doesn't exist or is private >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ./tc_ovmix.rb:141:in `test_objc_method' >>> >>> 30) Error: >>> test_rig(TC_OVMIX): >>> OSX::OCException: NSInvalidArgumentException - *** -[RigHelper >>> name]: >>> unrecognized selector sent to instance 0xb6c7ef0 >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ./tc_ovmix.rb:137:in `test_rig' >>> >>> 31) Error: >>> test_passbyref_subclass_methods(TC_PassByRef): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `passByRefObject:', the method either doesn't exist or is private >>> ./tc_passbyref.rb:88:in `passByRefObject' >>> ./tc_passbyref.rb:88:in `test_passbyref_subclass_methods' >>> >>> 32) Error: >>> test_action(TC_SubClass): >>> OSX::OCMessageSendException: Can't get Objective-C method signature >>> for selector 'setFoo:' of receiver #<TestActionClass:0x1365776 >>> class='TestActionClass' id=0x23c51a0> >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>> `objc_send' >>> ./tc_subclass.rb:165:in `test_action' >>> ./tc_subclass.rb:165:in `test_action' >>> >>> 33) Error: >>> test_objc_ruby_call(TC_SubClass): >>> OSX::OCException: NSInvalidArgumentException - *** -[CalledClass >>> calledFoo:]: unrecognized selector sent to instance 0x23cd370 >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ./tc_subclass.rb:190:in `test_objc_ruby_call' >>> >>> 34) Error: >>> test_override(TC_SubClass): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `description', the method either doesn't exist or is private >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >>> `objc_send' >>> ./tc_subclass.rb:103:in `test_override' >>> >>> 35) Failure: >>> test_rbobject_nscopying(TC_SubClass) [./tc_subclass.rb:273]: >>> <false> is not true. >>> >>> 36) Error: >>> test_undo2(TC_SubClass): >>> OSX::OCMessageSendException: Can't get Objective-C method signature >>> for selector 'addFoo:' of receiver #<OSX::NSUndoManager:0x14384d2 >>> class='NSUndoManager' id=0x24ab020> >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `ocm_send' >>> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >>> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >>> `method_missing' >>> ./tc_subclass.rb:239:in `test_undo2' >>> >>> 37) Failure: >>> test_autorelease(TC_Thread) >>> [./tc_thread.rb:79:in `assert_threads_supported' >>> ./tc_thread.rb:100:in `test_autorelease']: >>> no runtime support for Ruby threads. >>> <false> is not true. >>> >>> 38) Failure: >>> test_exceptions(TC_Thread) >>> [./tc_thread.rb:79:in `assert_threads_supported' >>> ./tc_thread.rb:139:in `test_exceptions']: >>> no runtime support for Ruby threads. >>> <false> is not true. >>> >>> 39) Failure: >>> test_existing_threads_before_rubycocoa(TC_Thread) >>> [./tc_thread.rb:79:in `assert_threads_supported' >>> ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: >>> no runtime support for Ruby threads. >>> <false> is not true. >>> >>> 40) Error: >>> test_threaded_closure(TC_Thread): >>> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >>> `threaded', the method either doesn't exist or is private >>> ./tc_thread.rb:75:in `callbackOnThreadRubyObject' >>> ./tc_thread.rb:75:in `test_threaded_closure' >>> >>> 41) Failure: >>> test_equality_of_a_objc_object_that_has_been_instantiated_from_a_nib >>> (TC_UniqObject) [./tc_uniqobj.rb:96]: >>> <false> is not true. >>> >>> 437 tests, 2726 assertions, 7 failures, 34 errors >>> <--- tests >>> ---> framework >>> ---> tool >>> <--- tool >>> <--- framework >>> install.rb: test done. >>> >>> >>> On 6-Feb-08, at 8:32 PM, Satoshi Nakagawa wrote: >>> >>>> Hi, >>>> >>>>> ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing >>>>> required >>>> architecture x86_64 in file >>>> >>>> It seems that you need to make /usr/local/lib/libruby also x86_64. >>>> If you doesn't need x86_64, try --build-universal=no like: >>>> >>>> $ ruby install.rb config --build-universal=no >>>> $ ruby install.rb setup >>>> >>>> -- >>>> Satoshi Nakagawa >>>> >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > Geoff Longman - Overlay TV - http://www.overlay.tv - > glo...@ov... - 613 761 6152 ext 243 > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > |
From: Geoffrey L. <geo...@ov...> - 2008-02-07 02:57:47
|
hmm, "About this Mac" says 10.5.1 this is a MacBook Pro purchased 1st week of December came with TIger installed and an upgrade disk 1st thing I did was upgrade to Leopard. I will check out MacPorts! Geoff On 6-Feb-08, at 9:51 PM, Satoshi Nakagawa wrote: > I noticed, > > ruby-header-dir /usr/local/lib/ruby/1.8/universal-darwin8.0 > macosx-deployment-target 10.5 > > your ruby seems for 10.4 even though target is 10.5. > Which version of OSX you are using? > > About test failures around thread, you should apply a patch to ruby. > > http://www.opensource.apple.com/darwinsource/10.5.1/ruby-67/patches/ruby_thread_hooks.diff > > I recommend MacPorts than building ruby by yourself. It deals with it > well by default. > > -- > Satoshi Nakagawa > > On 2008/02/07, at 11:18, Geoffrey Longman wrote: > >> Thanks for the quick reply! >> >> config and setup went smoothly this time. >> >> when I did the tests I'm getting 41 failures. >> >> looks like they are variations of these two: >> >> 1) Error: >> test_array_of_activerecords_to_proxies >> (TC_ActiveRecordClassExtensions): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `new_with_ocid' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxy' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `map' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> ./tc_active_record.rb:122:in >> `test_array_of_activerecords_to_proxies' >> >> 39) Failure: >> test_existing_threads_before_rubycocoa(TC_Thread) >> [./tc_thread.rb:79:in `assert_threads_supported' >> ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: >> no runtime support for Ruby threads. >> <false> is not true. >> >> >> but I'll append the complete list to the end of this message. >> >> Geoff >> >> Macintosh-3:src glongman$ ruby install.rb test >> install.rb: entering test phase... >> ---> tests >> extention ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ext/ >> rubycocoa/rubycocoa.bundle >> framework ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ >> framework/build/Default/RubyCocoa.framework/Versions/A/RubyCocoa >> "/usr/local/bin/ruby" -I../ext/rubycocoa -I../lib testall.rb >> make: `objc_test.bundle' is up to date. >> Loaded suite testall >> Started >> ..............................EE >> .EEEEEEEEEEEEEEEEEEEE..................EE..............2008-02-06 >> 21:12:30.480 ruby[2994:613] *** -[ExceptionTest ns:raise]: >> unrecognized selector sent to instance 0x2a19580 >> F2008-02-06 21:12:30.549 ruby[2994:613] *** -[ExceptionTest >> testExceptionRaise]: unrecognized selector sent to instance 0x2a7cb50 >> E2008-02-06 21:12:30.550 ruby[2994:613] *** -[ExceptionTest >> rb:raise]: >> unrecognized selector sent to instance 0x2a8b040 >> F >> .....................................................................................................................................E >> ..E.2008-02-06 21:12:31.023 ruby[2994:613] *** -[RigHelper name]: >> unrecognized selector sent to instance 0xb6c7ef0 >> E >> ...................................................................................................................E >> .............................E..2008-02-06 21:12:31.937 >> ruby[2994:613] >> *** -[CalledClass calledFoo:]: unrecognized selector sent to instance >> 0x23cd370 >> E..E..F...EFFF.E...........................F................ >> Finished in 3.081648 seconds. >> >> 1) Error: >> test_array_of_activerecords_to_proxies >> (TC_ActiveRecordClassExtensions): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `new_with_ocid' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxy' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `map' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> ./tc_active_record.rb:122:in >> `test_array_of_activerecords_to_proxies' >> >> 2) Error: >> test_array_of_proxies_to_original_activerecords >> (TC_ActiveRecordClassExtensions): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxy' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `map' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> ./tc_active_record.rb:126:in >> `test_array_of_proxies_to_original_activerecords' >> >> 3) Error: >> test_find_all(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxy' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `map' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:378:in `test_find_all' >> >> 4) Error: >> test_find_by(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 5) Error: >> test_find_first(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 6) Error: >> test_generated_instance_methods_on_proxy(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 7) Error: >> test_methods_from_record(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 8) Error: >> test_proxy_initWithAttributes(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 9) Error: >> test_proxy_initWithRecord(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 10) Error: >> test_proxy_init_should_not_create_a_new_record(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 11) Error: >> test_proxy_is_association?(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 12) Error: >> test_proxy_method_forwarding(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 13) Error: >> test_proxy_set_and_get_value_for_key(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 14) Error: >> test_proxy_to_model_class(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 15) Error: >> test_proxy_validate_value_for_key_with_error(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 16) Error: >> test_should_always_return_the_same_cached_proxy_for_a_record_object >> (TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 17) Error: >> test_should_be_able_to_compare_proxies(TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 18) Error: >> test_should_only_define_all_the_proxy_methods_once >> (TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 19) Error: >> test_should_return_a_proxy_when_requesting_a_belongs_to_associated_record >> (TC_ActiveRecordProxy): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:240:in `setup' >> >> 20) Error: >> test_should_destroy_a_record_on_remove(TC_ActiveRecordSetController): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxy' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `map' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:150:in `setup' >> >> 21) Error: >> test_should_destroy_multiple_records_on_remove >> (TC_ActiveRecordSetController): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxy' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `map' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:150:in `setup' >> >> 22) Error: >> test_should_instantiate_and_save_a_record_on_newObject >> (TC_ActiveRecordSetController): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `alloc' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in >> `to_activerecord_proxy' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `map' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in >> `to_activerecord_proxies' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in >> `find' >> ./tc_active_record.rb:150:in `setup' >> >> 23) Error: >> test_should_instantiate_but_not_save_a_record_on_newObject >> (TC_BelongsToActiveRecordSetController): >> NoMethodError: undefined method `reflect_on_all_associations' for >> NilClass >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in >> `is_association?' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in >> `initialize' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `method_missing' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:91:in >> `newObject' >> ./tc_active_record.rb:186:in >> `test_should_instantiate_but_not_save_a_record_on_newObject' >> ./tc_active_record.rb:72:in `assert_no_difference' >> ./tc_active_record.rb:185:in >> `test_should_instantiate_but_not_save_a_record_on_newObject' >> >> 24) Error: >> test_bool_type_conversions(TC_BoolTypeConversion): >> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >> `testBool', the method either doesn't exist or is private >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `method_missing' >> ./tc_bool.rb:97:in `do_conversion_tests' >> ./tc_bool.rb:95:in `each' >> ./tc_bool.rb:95:in `do_conversion_tests' >> ./tc_bool.rb:83:in `do_ruby_to_objc_conversion_tests' >> ./tc_bool.rb:48:in `test_bool_type_conversions' >> >> 25) Failure: >> test_indirect_ns_raise(TC_Exceptions) >> [./tc_exception.rb:53:in `check_nsexception' >> ./tc_exception.rb:70:in `test_indirect_ns_raise']: >> <"NSInvalidArgumentException - *** -[ExceptionTest ns:raise]: >> unrecognized selector sent to instance 0x2a19580"> expected to be =~ >> </ns_raise_name - ns_raise_reason/>. >> >> 26) Error: >> test_ns_rethrow(TC_Exceptions): >> NoMethodError: undefined method `__ocid__' for nil:NilClass >> ./tc_exception.rb:84:in `test_ns_rethrow' >> ./tc_exception.rb:92:in `with_suppress_backtrace_log' >> ./tc_exception.rb:81:in `test_ns_rethrow' >> >> 27) Failure: >> test_rb_raise(TC_Exceptions) [./tc_exception.rb:47]: >> <"rb_raise_message"> expected but was >> <"NSInvalidArgumentException - *** -[ExceptionTest rb:raise]: >> unrecognized selector sent to instance 0x2a8b040">. >> >> 28) Error: >> test_arg_retained(TC_OVMIX): >> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >> `setObject:', the method either doesn't exist or is private >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `method_missing' >> ./tc_ovmix.rb:186:in `test_arg_retained' >> >> 29) Error: >> test_objc_method(TC_OVMIX): >> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >> `foo1', the method either doesn't exist or is private >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `method_missing' >> ./tc_ovmix.rb:141:in `test_objc_method' >> >> 30) Error: >> test_rig(TC_OVMIX): >> OSX::OCException: NSInvalidArgumentException - *** -[RigHelper name]: >> unrecognized selector sent to instance 0xb6c7ef0 >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `method_missing' >> ./tc_ovmix.rb:137:in `test_rig' >> >> 31) Error: >> test_passbyref_subclass_methods(TC_PassByRef): >> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >> `passByRefObject:', the method either doesn't exist or is private >> ./tc_passbyref.rb:88:in `passByRefObject' >> ./tc_passbyref.rb:88:in `test_passbyref_subclass_methods' >> >> 32) Error: >> test_action(TC_SubClass): >> OSX::OCMessageSendException: Can't get Objective-C method signature >> for selector 'setFoo:' of receiver #<TestActionClass:0x1365776 >> class='TestActionClass' id=0x23c51a0> >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >> `objc_send' >> ./tc_subclass.rb:165:in `test_action' >> ./tc_subclass.rb:165:in `test_action' >> >> 33) Error: >> test_objc_ruby_call(TC_SubClass): >> OSX::OCException: NSInvalidArgumentException - *** -[CalledClass >> calledFoo:]: unrecognized selector sent to instance 0x23cd370 >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `method_missing' >> ./tc_subclass.rb:190:in `test_objc_ruby_call' >> >> 34) Error: >> test_override(TC_SubClass): >> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >> `description', the method either doesn't exist or is private >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in >> `objc_send' >> ./tc_subclass.rb:103:in `test_override' >> >> 35) Failure: >> test_rbobject_nscopying(TC_SubClass) [./tc_subclass.rb:273]: >> <false> is not true. >> >> 36) Error: >> test_undo2(TC_SubClass): >> OSX::OCMessageSendException: Can't get Objective-C method signature >> for selector 'addFoo:' of receiver #<OSX::NSUndoManager:0x14384d2 >> class='NSUndoManager' id=0x24ab020> >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `ocm_send' >> /Users/glongman/src/rubycocoa/src/framework/build/Default/ >> RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in >> `method_missing' >> ./tc_subclass.rb:239:in `test_undo2' >> >> 37) Failure: >> test_autorelease(TC_Thread) >> [./tc_thread.rb:79:in `assert_threads_supported' >> ./tc_thread.rb:100:in `test_autorelease']: >> no runtime support for Ruby threads. >> <false> is not true. >> >> 38) Failure: >> test_exceptions(TC_Thread) >> [./tc_thread.rb:79:in `assert_threads_supported' >> ./tc_thread.rb:139:in `test_exceptions']: >> no runtime support for Ruby threads. >> <false> is not true. >> >> 39) Failure: >> test_existing_threads_before_rubycocoa(TC_Thread) >> [./tc_thread.rb:79:in `assert_threads_supported' >> ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: >> no runtime support for Ruby threads. >> <false> is not true. >> >> 40) Error: >> test_threaded_closure(TC_Thread): >> RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector >> `threaded', the method either doesn't exist or is private >> ./tc_thread.rb:75:in `callbackOnThreadRubyObject' >> ./tc_thread.rb:75:in `test_threaded_closure' >> >> 41) Failure: >> test_equality_of_a_objc_object_that_has_been_instantiated_from_a_nib >> (TC_UniqObject) [./tc_uniqobj.rb:96]: >> <false> is not true. >> >> 437 tests, 2726 assertions, 7 failures, 34 errors >> <--- tests >> ---> framework >> ---> tool >> <--- tool >> <--- framework >> install.rb: test done. >> >> >> On 6-Feb-08, at 8:32 PM, Satoshi Nakagawa wrote: >> >>> Hi, >>> >>>> ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing required >>> architecture x86_64 in file >>> >>> It seems that you need to make /usr/local/lib/libruby also x86_64. >>> If you doesn't need x86_64, try --build-universal=no like: >>> >>> $ ruby install.rb config --build-universal=no >>> $ ruby install.rb setup >>> >>> -- >>> Satoshi Nakagawa >>> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk Geoff Longman - Overlay TV - http://www.overlay.tv - glo...@ov... - 613 761 6152 ext 243 |
From: Satoshi N. <sna...@in...> - 2008-02-07 02:52:58
|
I noticed, ruby-header-dir /usr/local/lib/ruby/1.8/universal-darwin8.0 macosx-deployment-target 10.5 your ruby seems for 10.4 even though target is 10.5. Which version of OSX you are using? About test failures around thread, you should apply a patch to ruby. http://www.opensource.apple.com/darwinsource/10.5.1/ruby-67/patches/ruby_thread_hooks.diff I recommend MacPorts than building ruby by yourself. It deals with it well by default. -- Satoshi Nakagawa On 2008/02/07, at 11:18, Geoffrey Longman wrote: > Thanks for the quick reply! > > config and setup went smoothly this time. > > when I did the tests I'm getting 41 failures. > > looks like they are variations of these two: > > 1) Error: > test_array_of_activerecords_to_proxies > (TC_ActiveRecordClassExtensions): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `new_with_ocid' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxy' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `map' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > ./tc_active_record.rb:122:in > `test_array_of_activerecords_to_proxies' > > 39) Failure: > test_existing_threads_before_rubycocoa(TC_Thread) > [./tc_thread.rb:79:in `assert_threads_supported' > ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: > no runtime support for Ruby threads. > <false> is not true. > > > but I'll append the complete list to the end of this message. > > Geoff > > Macintosh-3:src glongman$ ruby install.rb test > install.rb: entering test phase... > ---> tests > extention ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ext/ > rubycocoa/rubycocoa.bundle > framework ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ > framework/build/Default/RubyCocoa.framework/Versions/A/RubyCocoa > "/usr/local/bin/ruby" -I../ext/rubycocoa -I../lib testall.rb > make: `objc_test.bundle' is up to date. > Loaded suite testall > Started > ..............................EE > .EEEEEEEEEEEEEEEEEEEE..................EE..............2008-02-06 > 21:12:30.480 ruby[2994:613] *** -[ExceptionTest ns:raise]: > unrecognized selector sent to instance 0x2a19580 > F2008-02-06 21:12:30.549 ruby[2994:613] *** -[ExceptionTest > testExceptionRaise]: unrecognized selector sent to instance 0x2a7cb50 > E2008-02-06 21:12:30.550 ruby[2994:613] *** -[ExceptionTest rb:raise]: > unrecognized selector sent to instance 0x2a8b040 > F > .....................................................................................................................................E > ..E.2008-02-06 21:12:31.023 ruby[2994:613] *** -[RigHelper name]: > unrecognized selector sent to instance 0xb6c7ef0 > E > ...................................................................................................................E > .............................E..2008-02-06 21:12:31.937 ruby[2994:613] > *** -[CalledClass calledFoo:]: unrecognized selector sent to instance > 0x23cd370 > E..E..F...EFFF.E...........................F................ > Finished in 3.081648 seconds. > > 1) Error: > test_array_of_activerecords_to_proxies > (TC_ActiveRecordClassExtensions): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `new_with_ocid' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxy' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `map' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > ./tc_active_record.rb:122:in > `test_array_of_activerecords_to_proxies' > > 2) Error: > test_array_of_proxies_to_original_activerecords > (TC_ActiveRecordClassExtensions): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxy' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `map' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > ./tc_active_record.rb:126:in > `test_array_of_proxies_to_original_activerecords' > > 3) Error: > test_find_all(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxy' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `map' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:378:in `test_find_all' > > 4) Error: > test_find_by(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 5) Error: > test_find_first(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 6) Error: > test_generated_instance_methods_on_proxy(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 7) Error: > test_methods_from_record(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 8) Error: > test_proxy_initWithAttributes(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 9) Error: > test_proxy_initWithRecord(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 10) Error: > test_proxy_init_should_not_create_a_new_record(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 11) Error: > test_proxy_is_association?(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 12) Error: > test_proxy_method_forwarding(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 13) Error: > test_proxy_set_and_get_value_for_key(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 14) Error: > test_proxy_to_model_class(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 15) Error: > test_proxy_validate_value_for_key_with_error(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 16) Error: > test_should_always_return_the_same_cached_proxy_for_a_record_object > (TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 17) Error: > test_should_be_able_to_compare_proxies(TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 18) Error: > test_should_only_define_all_the_proxy_methods_once > (TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 19) Error: > test_should_return_a_proxy_when_requesting_a_belongs_to_associated_record > (TC_ActiveRecordProxy): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:240:in `setup' > > 20) Error: > test_should_destroy_a_record_on_remove(TC_ActiveRecordSetController): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxy' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `map' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:150:in `setup' > > 21) Error: > test_should_destroy_multiple_records_on_remove > (TC_ActiveRecordSetController): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxy' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `map' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:150:in `setup' > > 22) Error: > test_should_instantiate_and_save_a_record_on_newObject > (TC_ActiveRecordSetController): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `alloc' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in > `to_activerecord_proxy' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `map' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in > `to_activerecord_proxies' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in > `find' > ./tc_active_record.rb:150:in `setup' > > 23) Error: > test_should_instantiate_but_not_save_a_record_on_newObject > (TC_BelongsToActiveRecordSetController): > NoMethodError: undefined method `reflect_on_all_associations' for > NilClass > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in > `is_association?' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in > `initialize' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `method_missing' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:91:in > `newObject' > ./tc_active_record.rb:186:in > `test_should_instantiate_but_not_save_a_record_on_newObject' > ./tc_active_record.rb:72:in `assert_no_difference' > ./tc_active_record.rb:185:in > `test_should_instantiate_but_not_save_a_record_on_newObject' > > 24) Error: > test_bool_type_conversions(TC_BoolTypeConversion): > RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector > `testBool', the method either doesn't exist or is private > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `method_missing' > ./tc_bool.rb:97:in `do_conversion_tests' > ./tc_bool.rb:95:in `each' > ./tc_bool.rb:95:in `do_conversion_tests' > ./tc_bool.rb:83:in `do_ruby_to_objc_conversion_tests' > ./tc_bool.rb:48:in `test_bool_type_conversions' > > 25) Failure: > test_indirect_ns_raise(TC_Exceptions) > [./tc_exception.rb:53:in `check_nsexception' > ./tc_exception.rb:70:in `test_indirect_ns_raise']: > <"NSInvalidArgumentException - *** -[ExceptionTest ns:raise]: > unrecognized selector sent to instance 0x2a19580"> expected to be =~ > </ns_raise_name - ns_raise_reason/>. > > 26) Error: > test_ns_rethrow(TC_Exceptions): > NoMethodError: undefined method `__ocid__' for nil:NilClass > ./tc_exception.rb:84:in `test_ns_rethrow' > ./tc_exception.rb:92:in `with_suppress_backtrace_log' > ./tc_exception.rb:81:in `test_ns_rethrow' > > 27) Failure: > test_rb_raise(TC_Exceptions) [./tc_exception.rb:47]: > <"rb_raise_message"> expected but was > <"NSInvalidArgumentException - *** -[ExceptionTest rb:raise]: > unrecognized selector sent to instance 0x2a8b040">. > > 28) Error: > test_arg_retained(TC_OVMIX): > RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector > `setObject:', the method either doesn't exist or is private > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `method_missing' > ./tc_ovmix.rb:186:in `test_arg_retained' > > 29) Error: > test_objc_method(TC_OVMIX): > RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector > `foo1', the method either doesn't exist or is private > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `method_missing' > ./tc_ovmix.rb:141:in `test_objc_method' > > 30) Error: > test_rig(TC_OVMIX): > OSX::OCException: NSInvalidArgumentException - *** -[RigHelper name]: > unrecognized selector sent to instance 0xb6c7ef0 > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `method_missing' > ./tc_ovmix.rb:137:in `test_rig' > > 31) Error: > test_passbyref_subclass_methods(TC_PassByRef): > RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector > `passByRefObject:', the method either doesn't exist or is private > ./tc_passbyref.rb:88:in `passByRefObject' > ./tc_passbyref.rb:88:in `test_passbyref_subclass_methods' > > 32) Error: > test_action(TC_SubClass): > OSX::OCMessageSendException: Can't get Objective-C method signature > for selector 'setFoo:' of receiver #<TestActionClass:0x1365776 > class='TestActionClass' id=0x23c51a0> > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in > `objc_send' > ./tc_subclass.rb:165:in `test_action' > ./tc_subclass.rb:165:in `test_action' > > 33) Error: > test_objc_ruby_call(TC_SubClass): > OSX::OCException: NSInvalidArgumentException - *** -[CalledClass > calledFoo:]: unrecognized selector sent to instance 0x23cd370 > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `method_missing' > ./tc_subclass.rb:190:in `test_objc_ruby_call' > > 34) Error: > test_override(TC_SubClass): > RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector > `description', the method either doesn't exist or is private > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in > `objc_send' > ./tc_subclass.rb:103:in `test_override' > > 35) Failure: > test_rbobject_nscopying(TC_SubClass) [./tc_subclass.rb:273]: > <false> is not true. > > 36) Error: > test_undo2(TC_SubClass): > OSX::OCMessageSendException: Can't get Objective-C method signature > for selector 'addFoo:' of receiver #<OSX::NSUndoManager:0x14384d2 > class='NSUndoManager' id=0x24ab020> > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `ocm_send' > /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in > `method_missing' > ./tc_subclass.rb:239:in `test_undo2' > > 37) Failure: > test_autorelease(TC_Thread) > [./tc_thread.rb:79:in `assert_threads_supported' > ./tc_thread.rb:100:in `test_autorelease']: > no runtime support for Ruby threads. > <false> is not true. > > 38) Failure: > test_exceptions(TC_Thread) > [./tc_thread.rb:79:in `assert_threads_supported' > ./tc_thread.rb:139:in `test_exceptions']: > no runtime support for Ruby threads. > <false> is not true. > > 39) Failure: > test_existing_threads_before_rubycocoa(TC_Thread) > [./tc_thread.rb:79:in `assert_threads_supported' > ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: > no runtime support for Ruby threads. > <false> is not true. > > 40) Error: > test_threaded_closure(TC_Thread): > RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector > `threaded', the method either doesn't exist or is private > ./tc_thread.rb:75:in `callbackOnThreadRubyObject' > ./tc_thread.rb:75:in `test_threaded_closure' > > 41) Failure: > test_equality_of_a_objc_object_that_has_been_instantiated_from_a_nib > (TC_UniqObject) [./tc_uniqobj.rb:96]: > <false> is not true. > > 437 tests, 2726 assertions, 7 failures, 34 errors > <--- tests > ---> framework > ---> tool > <--- tool > <--- framework > install.rb: test done. > > > On 6-Feb-08, at 8:32 PM, Satoshi Nakagawa wrote: > >> Hi, >> >>> ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing required >> architecture x86_64 in file >> >> It seems that you need to make /usr/local/lib/libruby also x86_64. >> If you doesn't need x86_64, try --build-universal=no like: >> >> $ ruby install.rb config --build-universal=no >> $ ruby install.rb setup >> >> -- >> Satoshi Nakagawa >> > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > |
From: Geoffrey L. <geo...@ov...> - 2008-02-07 02:16:46
|
Thanks for the quick reply! config and setup went smoothly this time. when I did the tests I'm getting 41 failures. looks like they are variations of these two: 1) Error: test_array_of_activerecords_to_proxies(TC_ActiveRecordClassExtensions): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `new_with_ocid' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxy' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `map' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' ./tc_active_record.rb:122:in `test_array_of_activerecords_to_proxies' 39) Failure: test_existing_threads_before_rubycocoa(TC_Thread) [./tc_thread.rb:79:in `assert_threads_supported' ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: no runtime support for Ruby threads. <false> is not true. but I'll append the complete list to the end of this message. Geoff Macintosh-3:src glongman$ ruby install.rb test install.rb: entering test phase... ---> tests extention ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ext/ rubycocoa/rubycocoa.bundle framework ok: dyld: loaded: /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/RubyCocoa "/usr/local/bin/ruby" -I../ext/rubycocoa -I../lib testall.rb make: `objc_test.bundle' is up to date. Loaded suite testall Started ..............................EE .EEEEEEEEEEEEEEEEEEEE..................EE..............2008-02-06 21:12:30.480 ruby[2994:613] *** -[ExceptionTest ns:raise]: unrecognized selector sent to instance 0x2a19580 F2008-02-06 21:12:30.549 ruby[2994:613] *** -[ExceptionTest testExceptionRaise]: unrecognized selector sent to instance 0x2a7cb50 E2008-02-06 21:12:30.550 ruby[2994:613] *** -[ExceptionTest rb:raise]: unrecognized selector sent to instance 0x2a8b040 F .....................................................................................................................................E ..E.2008-02-06 21:12:31.023 ruby[2994:613] *** -[RigHelper name]: unrecognized selector sent to instance 0xb6c7ef0 E ...................................................................................................................E .............................E..2008-02-06 21:12:31.937 ruby[2994:613] *** -[CalledClass calledFoo:]: unrecognized selector sent to instance 0x23cd370 E..E..F...EFFF.E...........................F................ Finished in 3.081648 seconds. 1) Error: test_array_of_activerecords_to_proxies(TC_ActiveRecordClassExtensions): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `new_with_ocid' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxy' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `map' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' ./tc_active_record.rb:122:in `test_array_of_activerecords_to_proxies' 2) Error: test_array_of_proxies_to_original_activerecords (TC_ActiveRecordClassExtensions): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxy' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `map' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' ./tc_active_record.rb:126:in `test_array_of_proxies_to_original_activerecords' 3) Error: test_find_all(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxy' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `map' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:378:in `test_find_all' 4) Error: test_find_by(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 5) Error: test_find_first(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 6) Error: test_generated_instance_methods_on_proxy(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 7) Error: test_methods_from_record(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 8) Error: test_proxy_initWithAttributes(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 9) Error: test_proxy_initWithRecord(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 10) Error: test_proxy_init_should_not_create_a_new_record(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 11) Error: test_proxy_is_association?(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 12) Error: test_proxy_method_forwarding(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 13) Error: test_proxy_set_and_get_value_for_key(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 14) Error: test_proxy_to_model_class(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 15) Error: test_proxy_validate_value_for_key_with_error(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 16) Error: test_should_always_return_the_same_cached_proxy_for_a_record_object (TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 17) Error: test_should_be_able_to_compare_proxies(TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 18) Error: test_should_only_define_all_the_proxy_methods_once (TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 19) Error: test_should_return_a_proxy_when_requesting_a_belongs_to_associated_record (TC_ActiveRecordProxy): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:240:in `setup' 20) Error: test_should_destroy_a_record_on_remove(TC_ActiveRecordSetController): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxy' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `map' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:150:in `setup' 21) Error: test_should_destroy_multiple_records_on_remove (TC_ActiveRecordSetController): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxy' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `map' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:150:in `setup' 22) Error: test_should_instantiate_and_save_a_record_on_newObject (TC_ActiveRecordSetController): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `alloc' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:40:in `to_activerecord_proxy' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `map' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:48:in `to_activerecord_proxies' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:195:in `find' ./tc_active_record.rb:150:in `setup' 23) Error: test_should_instantiate_but_not_save_a_record_on_newObject (TC_BelongsToActiveRecordSetController): NoMethodError: undefined method `reflect_on_all_associations' for NilClass /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_import.rb:751:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:275:in `is_association?' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:374:in `initialize' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `method_missing' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/active_record.rb:91:in `newObject' ./tc_active_record.rb:186:in `test_should_instantiate_but_not_save_a_record_on_newObject' ./tc_active_record.rb:72:in `assert_no_difference' ./tc_active_record.rb:185:in `test_should_instantiate_but_not_save_a_record_on_newObject' 24) Error: test_bool_type_conversions(TC_BoolTypeConversion): RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector `testBool', the method either doesn't exist or is private /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `method_missing' ./tc_bool.rb:97:in `do_conversion_tests' ./tc_bool.rb:95:in `each' ./tc_bool.rb:95:in `do_conversion_tests' ./tc_bool.rb:83:in `do_ruby_to_objc_conversion_tests' ./tc_bool.rb:48:in `test_bool_type_conversions' 25) Failure: test_indirect_ns_raise(TC_Exceptions) [./tc_exception.rb:53:in `check_nsexception' ./tc_exception.rb:70:in `test_indirect_ns_raise']: <"NSInvalidArgumentException - *** -[ExceptionTest ns:raise]: unrecognized selector sent to instance 0x2a19580"> expected to be =~ </ns_raise_name - ns_raise_reason/>. 26) Error: test_ns_rethrow(TC_Exceptions): NoMethodError: undefined method `__ocid__' for nil:NilClass ./tc_exception.rb:84:in `test_ns_rethrow' ./tc_exception.rb:92:in `with_suppress_backtrace_log' ./tc_exception.rb:81:in `test_ns_rethrow' 27) Failure: test_rb_raise(TC_Exceptions) [./tc_exception.rb:47]: <"rb_raise_message"> expected but was <"NSInvalidArgumentException - *** -[ExceptionTest rb:raise]: unrecognized selector sent to instance 0x2a8b040">. 28) Error: test_arg_retained(TC_OVMIX): RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector `setObject:', the method either doesn't exist or is private /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `method_missing' ./tc_ovmix.rb:186:in `test_arg_retained' 29) Error: test_objc_method(TC_OVMIX): RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector `foo1', the method either doesn't exist or is private /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `method_missing' ./tc_ovmix.rb:141:in `test_objc_method' 30) Error: test_rig(TC_OVMIX): OSX::OCException: NSInvalidArgumentException - *** -[RigHelper name]: unrecognized selector sent to instance 0xb6c7ef0 /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `method_missing' ./tc_ovmix.rb:137:in `test_rig' 31) Error: test_passbyref_subclass_methods(TC_PassByRef): RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector `passByRefObject:', the method either doesn't exist or is private ./tc_passbyref.rb:88:in `passByRefObject' ./tc_passbyref.rb:88:in `test_passbyref_subclass_methods' 32) Error: test_action(TC_SubClass): OSX::OCMessageSendException: Can't get Objective-C method signature for selector 'setFoo:' of receiver #<TestActionClass:0x1365776 class='TestActionClass' id=0x23c51a0> /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in `objc_send' ./tc_subclass.rb:165:in `test_action' ./tc_subclass.rb:165:in `test_action' 33) Error: test_objc_ruby_call(TC_SubClass): OSX::OCException: NSInvalidArgumentException - *** -[CalledClass calledFoo:]: unrecognized selector sent to instance 0x23cd370 /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `method_missing' ./tc_subclass.rb:190:in `test_objc_ruby_call' 34) Error: test_override(TC_SubClass): RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector `description', the method either doesn't exist or is private /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:44:in `objc_send' ./tc_subclass.rb:103:in `test_override' 35) Failure: test_rbobject_nscopying(TC_SubClass) [./tc_subclass.rb:273]: <false> is not true. 36) Error: test_undo2(TC_SubClass): OSX::OCMessageSendException: Can't get Objective-C method signature for selector 'addFoo:' of receiver #<OSX::NSUndoManager:0x14384d2 class='NSUndoManager' id=0x24ab020> /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `ocm_send' /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources/ruby/osx/objc/oc_wrapper.rb:50:in `method_missing' ./tc_subclass.rb:239:in `test_undo2' 37) Failure: test_autorelease(TC_Thread) [./tc_thread.rb:79:in `assert_threads_supported' ./tc_thread.rb:100:in `test_autorelease']: no runtime support for Ruby threads. <false> is not true. 38) Failure: test_exceptions(TC_Thread) [./tc_thread.rb:79:in `assert_threads_supported' ./tc_thread.rb:139:in `test_exceptions']: no runtime support for Ruby threads. <false> is not true. 39) Failure: test_existing_threads_before_rubycocoa(TC_Thread) [./tc_thread.rb:79:in `assert_threads_supported' ./tc_thread.rb:202:in `test_existing_threads_before_rubycocoa']: no runtime support for Ruby threads. <false> is not true. 40) Error: test_threaded_closure(TC_Thread): RuntimeError: Ruby object `nil' doesn't respond to the ObjC selector `threaded', the method either doesn't exist or is private ./tc_thread.rb:75:in `callbackOnThreadRubyObject' ./tc_thread.rb:75:in `test_threaded_closure' 41) Failure: test_equality_of_a_objc_object_that_has_been_instantiated_from_a_nib (TC_UniqObject) [./tc_uniqobj.rb:96]: <false> is not true. 437 tests, 2726 assertions, 7 failures, 34 errors <--- tests ---> framework ---> tool <--- tool <--- framework install.rb: test done. On 6-Feb-08, at 8:32 PM, Satoshi Nakagawa wrote: > Hi, > >> ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing required > architecture x86_64 in file > > It seems that you need to make /usr/local/lib/libruby also x86_64. > If you doesn't need x86_64, try --build-universal=no like: > > $ ruby install.rb config --build-universal=no > $ ruby install.rb setup > > -- > Satoshi Nakagawa > |
From: Satoshi N. <sna...@in...> - 2008-02-07 01:33:55
|
Hi, > ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing required architecture x86_64 in file It seems that you need to make /usr/local/lib/libruby also x86_64. If you doesn't need x86_64, try --build-universal=no like: $ ruby install.rb config --build-universal=no $ ruby install.rb setup -- Satoshi Nakagawa On 2008/02/07, at 10:13, Geoffrey Longman wrote: > > HI there, > > I'm unable to build from an svn checkout of the trunk. ruby is setup/ > located exactly where the leopard install put it. > > no other ruby is on the machine. > > Saw similar posts on the list but none seem quite the same as this. > > thanks. > > Geoff > > > using show: > > Macintosh-3:src glongman$ ruby install.rb show > prefix /usr/local > install-prefix $prefix > std-ruby $install-prefix/lib/ruby/1.8 > site-ruby $install-prefix/lib/ruby/site_ruby/1.8 > bin-dir $install-prefix/bin > rb-dir $site-ruby > so-dir $install-prefix/lib/ruby/site_ruby/1.8/universal-darwin8.0 > data-dir $install-prefix/share > ruby-path /usr/local/bin/ruby > ruby-prog /usr/local/bin/ruby > make-prog make > without-ext no > install-root (not specified) > frameworks /Library/Frameworks > xcode-extras /Library/Application Support/Developer/3.0/Xcode/ > examples /Developer/Examples > documentation /Developer/Documentation > gen-bridge-support no > build-as-embeddable yes > ruby-header-dir /usr/local/lib/ruby/1.8/universal-darwin8.0 > libruby-path /usr/local/lib/libruby.1.8.6.dylib > ri-dir /usr/local/share/ri/1.8/site > build-universal yes > macosx-deployment-target 10.5 > sdkroot (not specified) > rubycocoa-version 0.13.1 > rubycocoa-version-short 0.13.1 > rubycocoa-release-date 2007-12-13 > rubycocoa-svn-revision 2182 > rubycocoa-framework-version A > > > and when I run setup: > > Macintosh-3:src glongman$ ruby install.rb setup > install.rb: entering setup phase... > ---> framework > rm -f build/Default/RubyCocoa.framework/Versions/Current > /usr/bin/xcodebuild > === BUILDING NATIVE TARGET RubyCocoa WITH THE DEFAULT CONFIGURATION > (Default) === > > Checking Dependencies... > > SymLink /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/Current A > mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions > cd /Users/glongman/src/rubycocoa/src/framework > /bin/ln -sf A /Users/glongman/src/rubycocoa/src/framework/build/ > Default/RubyCocoa.framework/Versions/Current > > SymLink /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Resources Versions/Current/Resources > cd /Users/glongman/src/rubycocoa/src/framework > /bin/ln -sf Versions/Current/Resources /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Resources > > SymLink /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Headers Versions/Current/Headers > cd /Users/glongman/src/rubycocoa/src/framework > /bin/ln -sf Versions/Current/Headers /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Headers > > SymLink /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/RubyCocoa Versions/Current/RubyCocoa > cd /Users/glongman/src/rubycocoa/src/framework > /bin/ln -sf Versions/Current/RubyCocoa /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/RubyCocoa > > Preprocessing /Users/glongman/src/rubycocoa/src/framework/build/ > RubyCocoa.build/Default/RubyCocoa.build/Preprocessed-Info.plist > Info.plist > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc -E -P -x c -Wno-trigraphs -include src/ > objc/Version.h Info.plist -o /Users/glongman/src/rubycocoa/src/ > framework/build/RubyCocoa.build/Default/RubyCocoa.build/Preprocessed- > Info.plist > > Processing /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Resources/Info.plist /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Preprocessed-Info.plist > mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Resources > cd /Users/glongman/src/rubycocoa/src/framework > <com.apple.tools.info-plist-utility> /Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Preprocessed-Info.plist -expandbuildsettings -o / > Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Resources/Info.plist > > CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ > RBObject.h src/objc/RBObject.h > mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Headers > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/objc/RBObject.h /Users/glongman/src/rubycocoa/src/ > framework/build/Default/RubyCocoa.framework/Versions/A/Headers > > CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ > RubyCocoa.h src/objc/RubyCocoa.h > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/objc/RubyCocoa.h /Users/glongman/src/rubycocoa/src/ > framework/build/Default/RubyCocoa.framework/Versions/A/Headers > > CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ > osx_ruby.h src/objc/osx_ruby.h > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/objc/osx_ruby.h /Users/glongman/src/rubycocoa/src/ > framework/build/Default/RubyCocoa.framework/Versions/A/Headers > > CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ > RBRuntime.h src/objc/RBRuntime.h > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/objc/RBRuntime.h /Users/glongman/src/rubycocoa/src/ > framework/build/Default/RubyCocoa.framework/Versions/A/Headers > > CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ > osx_intern.h src/objc/osx_intern.h > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/objc/osx_intern.h /Users/glongman/src/rubycocoa/ > src/framework/build/Default/RubyCocoa.framework/Versions/A/Headers > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Tools/ > gen_bridge_doc.rb tool/gen_bridge_doc.rb > mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Tools > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/tool/gen_bridge_doc.rb /Users/glongman/src/rubycocoa/ > src/framework/build/Default/RubyCocoa.framework/Versions/A/Tools > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Tools/ > rb_nibtool.rb tool/rb_nibtool.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/tool/rb_nibtool.rb /Users/glongman/src/rubycocoa/src/ > framework/build/Default/RubyCocoa.framework/Versions/A/Tools > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Tools/ > standaloneify.rb tool/standaloneify.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/tool/standaloneify.rb /Users/glongman/src/rubycocoa/ > src/framework/build/Default/RubyCocoa.framework/Versions/A/Tools > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/active_record.rb src/ruby/osx/active_record.rb > mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Resources/ruby/osx > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/active_record.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/webkit.rb src/ruby/osx/webkit.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/webkit.rb /Users/glongman/src/rubycocoa/ > src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ > ruby/osx > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/qtkit.rb src/ruby/osx/qtkit.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/qtkit.rb /Users/glongman/src/rubycocoa/ > src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ > ruby/osx > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/addressbook.rb src/ruby/osx/addressbook.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/addressbook.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/appkit.rb src/ruby/osx/appkit.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/appkit.rb /Users/glongman/src/rubycocoa/ > src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ > ruby/osx > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/cocoa.rb src/ruby/osx/cocoa.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/cocoa.rb /Users/glongman/src/rubycocoa/ > src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ > ruby/osx > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/coredata.rb src/ruby/osx/coredata.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/coredata.rb /Users/glongman/src/rubycocoa/ > src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ > ruby/osx > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/active_record.rb src/ruby/osx/objc/active_record.rb > mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Resources/ruby/osx/objc > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/active_record.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_bundle_support.rb src/ruby/osx/objc/oc_bundle_support.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_bundle_support.rb /Users/glongman/ > src/rubycocoa/src/framework/build/Default/RubyCocoa.framework/ > Versions/A/Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/application.rb src/ruby/osx/objc/application.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/application.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/cocoa.rb src/ruby/osx/objc/cocoa.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/cocoa.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/cocoa_macros.rb src/ruby/osx/objc/cocoa_macros.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/cocoa_macros.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/cocoa_macros_appkit.rb src/ruby/osx/objc/ > cocoa_macros_appkit.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/cocoa_macros_appkit.rb /Users/ > glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/foundation.rb src/ruby/osx/objc/foundation.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/foundation.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_all.rb src/ruby/osx/objc/oc_all.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_all.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_attachments.rb src/ruby/osx/objc/oc_attachments.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_attachments.rb /Users/glongman/ > src/rubycocoa/src/framework/build/Default/RubyCocoa.framework/ > Versions/A/Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_exception.rb src/ruby/osx/objc/oc_exception.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_exception.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_import.rb src/ruby/osx/objc/oc_import.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_import.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_types.rb src/ruby/osx/objc/oc_types.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_types.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_types_appkit.rb src/ruby/osx/objc/oc_types_appkit.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_types_appkit.rb /Users/glongman/ > src/rubycocoa/src/framework/build/Default/RubyCocoa.framework/ > Versions/A/Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_wrapper.rb src/ruby/osx/objc/oc_wrapper.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_wrapper.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/oc_attachments_appkit.rb src/ruby/osx/objc/ > oc_attachments_appkit.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/oc_attachments_appkit.rb /Users/ > glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/Resources/ruby/osx/objc > > PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ > osx/objc/ruby_addition.rb src/ruby/osx/objc/ruby_addition.rb > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ > Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- > debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/ > src/framework/src/ruby/osx/objc/ruby_addition.rb /Users/glongman/src/ > rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ > Resources/ruby/osx/objc > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/cls_objcid.o /Users/glongman/src/rubycocoa/src/framework/ > src/objc/cls_objcid.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/cls_objcid.m -o /Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/cls_objcid.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/cls_objcptr.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/cls_objcptr.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/cls_objcptr.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/cls_objcptr.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/mdl_objwrapper.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/mdl_objwrapper.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/mdl_objwrapper.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/mdl_objwrapper.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/ocdata_conv.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/ocdata_conv.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/ocdata_conv.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/ocdata_conv.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/OverrideMixin.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/OverrideMixin.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/OverrideMixin.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/OverrideMixin.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/RBObject.o /Users/glongman/src/rubycocoa/src/framework/ > src/objc/RBObject.m normal i386 objective-c com.apple.compilers.gcc. > 4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/RBObject.m -o /Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/RBObject.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/RBRuntime.o /Users/glongman/src/rubycocoa/src/framework/ > src/objc/RBRuntime.m normal i386 objective-c com.apple.compilers.gcc. > 4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/RBRuntime.m -o /Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/RBRuntime.o > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In > function ‘RBNotifyException’: > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 236: warning: passing argument 2 of ‘rb_f_sprintf’ > discards qualifiers from pointer target type > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In > function ‘RBCocoaInstallRubyThreadSchedulerHooks’: > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 929: warning: ‘NSLookupAndBindSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:179) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 931: warning: ‘NSLookupAndBindSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:179) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 933: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 934: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSNameOfModule’ is deprecated (declared > at /usr/include/mach-o/dyld.h:158) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSNameOfModule’ is deprecated (declared > at /usr/include/mach-o/dyld.h:158) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In > function ‘RBNotifyException’: > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 236: warning: passing argument 2 of ‘rb_f_sprintf’ > discards qualifiers from pointer target type > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In > function ‘RBCocoaInstallRubyThreadSchedulerHooks’: > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 929: warning: ‘NSLookupAndBindSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:179) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 931: warning: ‘NSLookupAndBindSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:179) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 933: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 934: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSNameOfModule’ is deprecated (declared > at /usr/include/mach-o/dyld.h:158) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSNameOfModule’ is deprecated (declared > at /usr/include/mach-o/dyld.h:158) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In > function ‘RBNotifyException’: > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 236: warning: passing argument 2 of ‘rb_f_sprintf’ > discards qualifiers from pointer target type > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In > function ‘RBCocoaInstallRubyThreadSchedulerHooks’: > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 929: warning: ‘NSLookupAndBindSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:179) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 931: warning: ‘NSLookupAndBindSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:179) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 933: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 934: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSNameOfModule’ is deprecated (declared > at /usr/include/mach-o/dyld.h:158) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSNameOfModule’ is deprecated (declared > at /usr/include/mach-o/dyld.h:158) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In > function ‘RBNotifyException’: > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 236: warning: passing argument 2 of ‘rb_f_sprintf’ > discards qualifiers from pointer target type > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In > function ‘RBCocoaInstallRubyThreadSchedulerHooks’: > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 929: warning: ‘NSLookupAndBindSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:179) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 931: warning: ‘NSLookupAndBindSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:179) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 933: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 934: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSNameOfModule’ is deprecated (declared > at /usr/include/mach-o/dyld.h:158) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSNameOfModule’ is deprecated (declared > at /usr/include/mach-o/dyld.h:158) > /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: > 936: warning: ‘NSModuleForSymbol’ is deprecated > (declared at /usr/include/mach-o/dyld.h:189) > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/RBSlaveObject.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/RBSlaveObject.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/RBSlaveObject.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/RBSlaveObject.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/RBThreadSwitcher.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/RBThreadSwitcher.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/RBThreadSwitcher.m -o /Users/ > glongman/src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/RBThreadSwitcher.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/mdl_osxobjc.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/mdl_osxobjc.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/mdl_osxobjc.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/mdl_osxobjc.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/RBClassUtils.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/RBClassUtils.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/RBClassUtils.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/RBClassUtils.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/BridgeSupport.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/BridgeSupport.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/BridgeSupport.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/BridgeSupport.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/ocexception.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/ocexception.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/ocexception.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/ocexception.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/libffi.o /Users/glongman/src/rubycocoa/src/framework/src/ > objc/libffi.m normal i386 objective-c com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/libffi.m -o /Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/libffi.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/mdl_bundle_support.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/mdl_bundle_support.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/mdl_bundle_support.m -o /Users/ > glongman/src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/mdl_bundle_support.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/RubyCocoa.o /Users/glongman/src/rubycocoa/src/framework/ > src/objc/RubyCocoa.m normal i386 objective-c com.apple.compilers.gcc. > 4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/RubyCocoa.m -o /Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/RubyCocoa.o > > CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects- > normal/i386/RBTestProbe.o /Users/glongman/src/rubycocoa/src/ > framework/src/objc/RBTestProbe.m normal i386 objective-c > com.apple.compilers.gcc.4_0 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- > trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - > mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/ > src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ > RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas - > F/Users/glongman/src/rubycocoa/src/framework/build/Default -I/Users/ > glongman/src/rubycocoa/src/framework/build/Default/include -I/usr/ > local/lib/ruby/1.8/universal-darwin8.0 -I/Users/glongman/src/ > rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/DerivedSources -fno-common -g -fobjc-exceptions - > arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 - > DHAS_LIBXML2 -I/usr/include/ffi -DMACOSX -c /Users/glongman/src/ > rubycocoa/src/framework/src/objc/RBTestProbe.m -o /Users/glongman/ > src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ > RubyCocoa.build/Objects-normal/i386/RBTestProbe.o > > Ld /Users/glongman/src/rubycocoa/src/framework/build/Default/ > RubyCocoa.framework/Versions/A/RubyCocoa normal i386 > cd /Users/glongman/src/rubycocoa/src/framework > /Developer/usr/bin/gcc-4.0 -o /Users/glongman/src/rubycocoa/src/ > framework/build/Default/RubyCocoa.framework/Versions/A/RubyCocoa -L/ > Users/glongman/src/rubycocoa/src/framework/build/Default -L/usr/ > local/lib -F/Users/glongman/src/rubycocoa/src/framework/build/ > Default -filelist /Users/glongman/src/rubycocoa/src/framework/build/ > RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ > RubyCocoa.LinkFileList -framework Foundation -arch i386 -Wl,- > single_module -compatibility_version 1 -current_version 1 - > install_name @executable_path/../Frameworks/RubyCocoa.framework/ > Versions/A/RubyCocoa -dynamiclib -mmacosx-version-min=10.5 - > undefined suppress -flat_namespace -arch ppc -arch i386 -arch ppc64 - > arch x86_64 -lxml2 -lffi /usr/local/lib/libruby.1.8.6.dylib > ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing required > architecture x86_64 in file > ld: in /usr/local/lib/libsqlite3.0.dylib, missingld: warning in /usr/ > local/lib/libruby.1.8.6.dylib, missing required architecture ppc64 > in file > ld: in /usr/local/lib/libsqlite3.0.dylib, missing required > architecture ppc64 in file > collect2: ld returned 1 exit status > required architecture x86_64 in file > collect2: ld returned 1 exit status > lipo: can't open input file: /var/folders/Ik/IkfWDI-cHgOdhMryqCyy+U++ > +TI/-Tmp-//ccWYuDCN.out (No such file or directory) > ** BUILD FAILED ** > setup failed > 'system /usr/bin/xcodebuild' failed > try 'ruby install.rb --help' for usage > > > > Geoff Longman - Overlay TV - http://www.overlay.tv - glo...@ov... > - 613 761 6152 ext 243 > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/_______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Geoffrey L. <geo...@ov...> - 2008-02-07 01:11:10
|
HI there, I'm unable to build from an svn checkout of the trunk. ruby is setup/ located exactly where the leopard install put it. no other ruby is on the machine. Saw similar posts on the list but none seem quite the same as this. thanks. Geoff using show: Macintosh-3:src glongman$ ruby install.rb show prefix /usr/local install-prefix $prefix std-ruby $install-prefix/lib/ruby/1.8 site-ruby $install-prefix/lib/ruby/site_ruby/1.8 bin-dir $install-prefix/bin rb-dir $site-ruby so-dir $install-prefix/lib/ruby/site_ruby/1.8/universal-darwin8.0 data-dir $install-prefix/share ruby-path /usr/local/bin/ruby ruby-prog /usr/local/bin/ruby make-prog make without-ext no install-root (not specified) frameworks /Library/Frameworks xcode-extras /Library/Application Support/Developer/3.0/Xcode/ examples /Developer/Examples documentation /Developer/Documentation gen-bridge-support no build-as-embeddable yes ruby-header-dir /usr/local/lib/ruby/1.8/universal-darwin8.0 libruby-path /usr/local/lib/libruby.1.8.6.dylib ri-dir /usr/local/share/ri/1.8/site build-universal yes macosx-deployment-target 10.5 sdkroot (not specified) rubycocoa-version 0.13.1 rubycocoa-version-short 0.13.1 rubycocoa-release-date 2007-12-13 rubycocoa-svn-revision 2182 rubycocoa-framework-version A and when I run setup: Macintosh-3:src glongman$ ruby install.rb setup install.rb: entering setup phase... ---> framework rm -f build/Default/RubyCocoa.framework/Versions/Current /usr/bin/xcodebuild === BUILDING NATIVE TARGET RubyCocoa WITH THE DEFAULT CONFIGURATION (Default) === Checking Dependencies... SymLink /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions/Current A mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions cd /Users/glongman/src/rubycocoa/src/framework /bin/ln -sf A /Users/glongman/src/rubycocoa/src/framework/build/ Default/RubyCocoa.framework/Versions/Current SymLink /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Resources Versions/Current/Resources cd /Users/glongman/src/rubycocoa/src/framework /bin/ln -sf Versions/Current/Resources /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Resources SymLink /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Headers Versions/Current/Headers cd /Users/glongman/src/rubycocoa/src/framework /bin/ln -sf Versions/Current/Headers /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Headers SymLink /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/RubyCocoa Versions/Current/RubyCocoa cd /Users/glongman/src/rubycocoa/src/framework /bin/ln -sf Versions/Current/RubyCocoa /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/RubyCocoa Preprocessing /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Preprocessed-Info.plist Info.plist cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc -E -P -x c -Wno-trigraphs -include src/ objc/Version.h Info.plist -o /Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/Preprocessed- Info.plist Processing /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions/A/Resources/Info.plist /Users/glongman/ src/rubycocoa/src/framework/build/RubyCocoa.build/Default/ RubyCocoa.build/Preprocessed-Info.plist mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions/A/Resources cd /Users/glongman/src/rubycocoa/src/framework <com.apple.tools.info-plist-utility> /Users/glongman/src/ rubycocoa/src/framework/build/RubyCocoa.build/Default/RubyCocoa.build/ Preprocessed-Info.plist -expandbuildsettings -o /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/Info.plist CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ RBObject.h src/objc/RBObject.h mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions/A/Headers cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/objc/RBObject.h /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Headers CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ RubyCocoa.h src/objc/RubyCocoa.h cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/objc/RubyCocoa.h /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Headers CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ osx_ruby.h src/objc/osx_ruby.h cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/objc/osx_ruby.h /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Headers CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ RBRuntime.h src/objc/RBRuntime.h cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/objc/RBRuntime.h /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Headers CpHeader build/Default/RubyCocoa.framework/Versions/A/Headers/ osx_intern.h src/objc/osx_intern.h cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/objc/osx_intern.h /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Headers PBXCp build/Default/RubyCocoa.framework/Versions/A/Tools/ gen_bridge_doc.rb tool/gen_bridge_doc.rb mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions/A/Tools cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/tool/gen_bridge_doc.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Tools PBXCp build/Default/RubyCocoa.framework/Versions/A/Tools/rb_nibtool.rb tool/rb_nibtool.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/tool/rb_nibtool.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Tools PBXCp build/Default/RubyCocoa.framework/Versions/A/Tools/ standaloneify.rb tool/standaloneify.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/tool/standaloneify.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Tools PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ active_record.rb src/ruby/osx/active_record.rb mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions/A/Resources/ruby/osx cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/active_record.rb /Users/glongman/src/rubycocoa/ src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ ruby/osx PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ webkit.rb src/ruby/osx/webkit.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/webkit.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ osx PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ qtkit.rb src/ruby/osx/qtkit.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/qtkit.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ osx PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ addressbook.rb src/ruby/osx/addressbook.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/addressbook.rb /Users/glongman/src/rubycocoa/ src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ ruby/osx PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ appkit.rb src/ruby/osx/appkit.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/appkit.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ osx PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ cocoa.rb src/ruby/osx/cocoa.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/cocoa.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ osx PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ coredata.rb src/ruby/osx/coredata.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/coredata.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ osx PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/active_record.rb src/ruby/osx/objc/active_record.rb mkdir /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions/A/Resources/ruby/osx/objc cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/active_record.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_bundle_support.rb src/ruby/osx/objc/oc_bundle_support.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_bundle_support.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/application.rb src/ruby/osx/objc/application.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/application.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/cocoa.rb src/ruby/osx/objc/cocoa.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/cocoa.rb /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/ osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/cocoa_macros.rb src/ruby/osx/objc/cocoa_macros.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/cocoa_macros.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/cocoa_macros_appkit.rb src/ruby/osx/objc/cocoa_macros_appkit.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/cocoa_macros_appkit.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/foundation.rb src/ruby/osx/objc/foundation.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/foundation.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_all.rb src/ruby/osx/objc/oc_all.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_all.rb /Users/glongman/src/rubycocoa/ src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_attachments.rb src/ruby/osx/objc/oc_attachments.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_attachments.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_exception.rb src/ruby/osx/objc/oc_exception.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_exception.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_import.rb src/ruby/osx/objc/oc_import.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_import.rb /Users/glongman/src/rubycocoa/ src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_types.rb src/ruby/osx/objc/oc_types.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_types.rb /Users/glongman/src/rubycocoa/ src/framework/build/Default/RubyCocoa.framework/Versions/A/Resources/ ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_types_appkit.rb src/ruby/osx/objc/oc_types_appkit.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_types_appkit.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_wrapper.rb src/ruby/osx/objc/oc_wrapper.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_wrapper.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/oc_attachments_appkit.rb src/ruby/osx/objc/oc_attachments_appkit.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/oc_attachments_appkit.rb /Users/glongman/ src/rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/ A/Resources/ruby/osx/objc PBXCp build/Default/RubyCocoa.framework/Versions/A/Resources/ruby/osx/ objc/ruby_addition.rb src/ruby/osx/objc/ruby_addition.rb cd /Users/glongman/src/rubycocoa/src/framework /Developer/Library/PrivateFrameworks/DevToolsCore.framework/ Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip- debug-symbols -resolve-src-symlinks /Users/glongman/src/rubycocoa/src/ framework/src/ruby/osx/objc/ruby_addition.rb /Users/glongman/src/ rubycocoa/src/framework/build/Default/RubyCocoa.framework/Versions/A/ Resources/ruby/osx/objc CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/cls_objcid.o /Users/glongman/src/rubycocoa/src/framework/src/objc/ cls_objcid.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ cls_objcid.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/cls_objcid.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/cls_objcptr.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/cls_objcptr.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ cls_objcptr.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ cls_objcptr.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/mdl_objwrapper.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/mdl_objwrapper.m normal i386 objective-c com.apple.compilers.gcc. 4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ mdl_objwrapper.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ mdl_objwrapper.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/ocdata_conv.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/ocdata_conv.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ ocdata_conv.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ ocdata_conv.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/OverrideMixin.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/OverrideMixin.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ OverrideMixin.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ OverrideMixin.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/RBObject.o /Users/glongman/src/rubycocoa/src/framework/src/objc/ RBObject.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ RBObject.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/RBObject.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/RBRuntime.o /Users/glongman/src/rubycocoa/src/framework/src/objc/ RBRuntime.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ RBRuntime.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/RBRuntime.o /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In function ‘RBNotifyException’: /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:236: warning: passing argument 2 of ‘rb_f_sprintf’ discards qualifiers from pointer target type /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In function ‘RBCocoaInstallRubyThreadSchedulerHooks’: /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:929: warning: ‘NSLookupAndBindSymbol’ is deprecated (declared at /usr/ include/mach-o/dyld.h:179) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:931: warning: ‘NSLookupAndBindSymbol’ is deprecated (declared at /usr/ include/mach-o/dyld.h:179) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:933: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:934: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSNameOfModule’ is deprecated (declared at /usr/include/mach- o/dyld.h:158) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSNameOfModule’ is deprecated (declared at /usr/include/mach- o/dyld.h:158) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In function ‘RBNotifyException’: /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:236: warning: passing argument 2 of ‘rb_f_sprintf’ discards qualifiers from pointer target type /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In function ‘RBCocoaInstallRubyThreadSchedulerHooks’: /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:929: warning: ‘NSLookupAndBindSymbol’ is deprecated (declared at /usr/ include/mach-o/dyld.h:179) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:931: warning: ‘NSLookupAndBindSymbol’ is deprecated (declared at /usr/ include/mach-o/dyld.h:179) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:933: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:934: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSNameOfModule’ is deprecated (declared at /usr/include/mach- o/dyld.h:158) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSNameOfModule’ is deprecated (declared at /usr/include/mach- o/dyld.h:158) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In function ‘RBNotifyException’: /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:236: warning: passing argument 2 of ‘rb_f_sprintf’ discards qualifiers from pointer target type /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In function ‘RBCocoaInstallRubyThreadSchedulerHooks’: /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:929: warning: ‘NSLookupAndBindSymbol’ is deprecated (declared at /usr/ include/mach-o/dyld.h:179) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:931: warning: ‘NSLookupAndBindSymbol’ is deprecated (declared at /usr/ include/mach-o/dyld.h:179) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:933: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:934: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSNameOfModule’ is deprecated (declared at /usr/include/mach- o/dyld.h:158) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSNameOfModule’ is deprecated (declared at /usr/include/mach- o/dyld.h:158) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In function ‘RBNotifyException’: /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:236: warning: passing argument 2 of ‘rb_f_sprintf’ discards qualifiers from pointer target type /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m: In function ‘RBCocoaInstallRubyThreadSchedulerHooks’: /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:929: warning: ‘NSLookupAndBindSymbol’ is deprecated (declared at /usr/ include/mach-o/dyld.h:179) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:931: warning: ‘NSLookupAndBindSymbol’ is deprecated (declared at /usr/ include/mach-o/dyld.h:179) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:933: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:934: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSNameOfModule’ is deprecated (declared at /usr/include/mach- o/dyld.h:158) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSNameOfModule’ is deprecated (declared at /usr/include/mach- o/dyld.h:158) /Users/glongman/src/rubycocoa/src/framework/src/objc/RBRuntime.m:936: warning: ‘NSModuleForSymbol’ is deprecated (declared at /usr/include/ mach-o/dyld.h:189) CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/RBSlaveObject.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/RBSlaveObject.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ RBSlaveObject.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ RBSlaveObject.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/RBThreadSwitcher.o /Users/glongman/src/rubycocoa/src/framework/ src/objc/RBThreadSwitcher.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ RBThreadSwitcher.m -o /Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ RBThreadSwitcher.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/mdl_osxobjc.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/mdl_osxobjc.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ mdl_osxobjc.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ mdl_osxobjc.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/RBClassUtils.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/RBClassUtils.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ RBClassUtils.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ RBClassUtils.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/BridgeSupport.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/BridgeSupport.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ BridgeSupport.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ BridgeSupport.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/ocexception.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/ocexception.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ ocexception.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ ocexception.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/libffi.o /Users/glongman/src/rubycocoa/src/framework/src/objc/ libffi.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ libffi.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/libffi.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/mdl_bundle_support.o /Users/glongman/src/rubycocoa/src/framework/ src/objc/mdl_bundle_support.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ mdl_bundle_support.m -o /Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ mdl_bundle_support.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/RubyCocoa.o /Users/glongman/src/rubycocoa/src/framework/src/objc/ RubyCocoa.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ RubyCocoa.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/RubyCocoa.o CompileC build/RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/ i386/RBTestProbe.o /Users/glongman/src/rubycocoa/src/framework/src/ objc/RBTestProbe.m normal i386 objective-c com.apple.compilers.gcc.4_0 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -pipe -Wno- trigraphs -fpascal-strings -fasm-blocks -O3 -fmessage-length=0 - mmacosx-version-min=10.5 -gdwarf-2 -I/Users/glongman/src/rubycocoa/src/ framework/build/RubyCocoa.build/Default/RubyCocoa.build/RubyCocoa.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/glongman/ src/rubycocoa/src/framework/build/Default -I/Users/glongman/src/ rubycocoa/src/framework/build/Default/include -I/usr/local/lib/ruby/ 1.8/universal-darwin8.0 -I/Users/glongman/src/rubycocoa/src/framework/ build/RubyCocoa.build/Default/RubyCocoa.build/DerivedSources -fno- common -g -fobjc-exceptions -arch ppc -arch i386 -arch ppc64 -arch x86_64 -I/usr/include/libxml2 -DHAS_LIBXML2 -I/usr/include/ffi - DMACOSX -c /Users/glongman/src/rubycocoa/src/framework/src/objc/ RBTestProbe.m -o /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ RBTestProbe.o Ld /Users/glongman/src/rubycocoa/src/framework/build/Default/ RubyCocoa.framework/Versions/A/RubyCocoa normal i386 cd /Users/glongman/src/rubycocoa/src/framework /Developer/usr/bin/gcc-4.0 -o /Users/glongman/src/rubycocoa/src/ framework/build/Default/RubyCocoa.framework/Versions/A/RubyCocoa -L/ Users/glongman/src/rubycocoa/src/framework/build/Default -L/usr/local/ lib -F/Users/glongman/src/rubycocoa/src/framework/build/Default - filelist /Users/glongman/src/rubycocoa/src/framework/build/ RubyCocoa.build/Default/RubyCocoa.build/Objects-normal/i386/ RubyCocoa.LinkFileList -framework Foundation -arch i386 -Wl,- single_module -compatibility_version 1 -current_version 1 - install_name @executable_path/../Frameworks/RubyCocoa.framework/ Versions/A/RubyCocoa -dynamiclib -mmacosx-version-min=10.5 -undefined suppress -flat_namespace -arch ppc -arch i386 -arch ppc64 -arch x86_64 -lxml2 -lffi /usr/local/lib/libruby.1.8.6.dylib ld: warning in /usr/local/lib/libruby.1.8.6.dylib, missing required architecture x86_64 in file ld: in /usr/local/lib/libsqlite3.0.dylib, missingld: warning in /usr/ local/lib/libruby.1.8.6.dylib, missing required architecture ppc64 in file ld: in /usr/local/lib/libsqlite3.0.dylib, missing required architecture ppc64 in file collect2: ld returned 1 exit status required architecture x86_64 in file collect2: ld returned 1 exit status lipo: can't open input file: /var/folders/Ik/IkfWDI-cHgOdhMryqCyy+U++ +TI/-Tmp-//ccWYuDCN.out (No such file or directory) ** BUILD FAILED ** setup failed 'system /usr/bin/xcodebuild' failed try 'ruby install.rb --help' for usage Geoff Longman - Overlay TV - http://www.overlay.tv - glo...@ov... - 613 761 6152 ext 243 |
From: Eloy D. <elo...@gm...> - 2008-02-06 15:04:58
|
Hi Avram, I don't think it's likely that libtidy was already loaded. However, I think that the way you described by using NSXMLDocument is actually even nicer... I mean, if a complete drop in replacement for the ruby Tidy lib is as simple as the following 5 lines: class OSX::NSXMLDocument def self.tidy(html) alloc.initWithData_options_error(OSX::NSData.dataWithRubyString(html), OSX::NSXMLDocumentTidyHTML, nil).XMLData.rubyString end end # cleaned_html = OSX::NSXMLDocument.tidy(dirty_html) Then that's pretty neat in my book... :) Thanks for the update! Cheers, Eloy On 2/6/08, Avram Lyon <aj...@gm...> wrote: > Update: > > I haven't been able to track down why I can't dynamically load > libraries when using RubyCocoa, but I did find a fix for my specific > needs. > > The Tidy gem works just like the NSXMLDocument contructor when used > with the NSXMLDocumentTidyHTML option, so I was able to just replicate > the gem's functionality using equivalent Obj-C calls. Code follows. > > Since the Tidy library (but not gem) is installed by default on Macs, > this makes me wonder if the error I listed in my original post > (.../dl/import.rb:126:in `symbol': can't find the symbol `tidyCreate' > (RuntimeError)), was in fact because libtidy.dylib was already loaded. > Is that a possibility? > > Hope this workaround helps anyone else who finds herself in my situation. > > Avram > > (workaround code) > # Here we need to act like we use Tidy, without using it > def tidy_up_html(html) > data = OSX::NSData.dataWithRubyString(html) > document = > OSX::NSXMLDocument.alloc.initWithData_options_error(data, > OSX::NSXMLDocumentTidyHTML, nil) > ns_data = document.XMLData > cleaned = ns_data.rubyString > cleaned > end > > > On Feb 3, 2008 5:31 PM, Avram Lyon <aj...@gm...> wrote: > > I'm working on a RubyCocoa front-end for a Ruby library I wrote to > > access a certain web forum. The library uses the Tidy gem to normalize > > the messy HTML it gets from the web server before using REXML to parse > > out the needed content. This works fine for me when I'm using plain > > old Ruby, but when I call: > > > > Tidy.path=LOCAL_TIDY_LIB_PATH > > > > from my RubyCocoa app, I get a RuntimeError (trace below). As the > > trace shows, the error is thrown when dl/import.rb tries to load the > > local HTMLTidy library (/usr/lib/libtidy.dylib). > > > > My gut instinct here is that this a limitation of RubyCocoa -- I can't > > use dynamic loading. Is that the case? If so, is there a way to work > > around it? I've looked at the Tidy gem project documentation and the > > RubyCocoa documentation, and I don't see anything related to this. > > > > Thanks in advance for any and all advice, > > > > Avram Lyon > > > > Trace from XCode Debugger console follows: > > ==snip== > > /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23 > > /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:126:in > > `symbol': can't find the symbol `tidyCreate' (RuntimeError) > > from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:145:in > > `import' > > from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:61:in > > `extern' > > from /Library/Ruby/Gems/1.8/gems/tidy-1.1.2/lib/tidy/tidylib.rb:17:in `load' > > from /Library/Ruby/Gems/1.8/gems/tidy-1.1.2/lib/tidy.rb:46:in `path=' > > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:195:in > > `tidy_up_html' > > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:123:in > > `parse_v2' > > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:114:in > > `parse' > > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:72:in > > `login' > > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_window_controller.rb:25:in > > `loginClient' > > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23:in > > `NSApplicationMain' > > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23 > > > > The Debugger has exited with status 1.The Debugger has exited with status 1. > > ==end of trace== > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > |
From: Avram L. <aj...@gm...> - 2008-02-06 09:43:18
|
Update: I haven't been able to track down why I can't dynamically load libraries when using RubyCocoa, but I did find a fix for my specific needs. The Tidy gem works just like the NSXMLDocument contructor when used with the NSXMLDocumentTidyHTML option, so I was able to just replicate the gem's functionality using equivalent Obj-C calls. Code follows. Since the Tidy library (but not gem) is installed by default on Macs, this makes me wonder if the error I listed in my original post (.../dl/import.rb:126:in `symbol': can't find the symbol `tidyCreate' (RuntimeError)), was in fact because libtidy.dylib was already loaded. Is that a possibility? Hope this workaround helps anyone else who finds herself in my situation. Avram (workaround code) # Here we need to act like we use Tidy, without using it def tidy_up_html(html) data = OSX::NSData.dataWithRubyString(html) document = OSX::NSXMLDocument.alloc.initWithData_options_error(data, OSX::NSXMLDocumentTidyHTML, nil) ns_data = document.XMLData cleaned = ns_data.rubyString cleaned end On Feb 3, 2008 5:31 PM, Avram Lyon <aj...@gm...> wrote: > I'm working on a RubyCocoa front-end for a Ruby library I wrote to > access a certain web forum. The library uses the Tidy gem to normalize > the messy HTML it gets from the web server before using REXML to parse > out the needed content. This works fine for me when I'm using plain > old Ruby, but when I call: > > Tidy.path=LOCAL_TIDY_LIB_PATH > > from my RubyCocoa app, I get a RuntimeError (trace below). As the > trace shows, the error is thrown when dl/import.rb tries to load the > local HTMLTidy library (/usr/lib/libtidy.dylib). > > My gut instinct here is that this a limitation of RubyCocoa -- I can't > use dynamic loading. Is that the case? If so, is there a way to work > around it? I've looked at the Tidy gem project documentation and the > RubyCocoa documentation, and I don't see anything related to this. > > Thanks in advance for any and all advice, > > Avram Lyon > > Trace from XCode Debugger console follows: > ==snip== > /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23 > /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:126:in > `symbol': can't find the symbol `tidyCreate' (RuntimeError) > from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:145:in > `import' > from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:61:in > `extern' > from /Library/Ruby/Gems/1.8/gems/tidy-1.1.2/lib/tidy/tidylib.rb:17:in `load' > from /Library/Ruby/Gems/1.8/gems/tidy-1.1.2/lib/tidy.rb:46:in `path=' > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:195:in > `tidy_up_html' > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:123:in > `parse_v2' > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:114:in > `parse' > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:72:in > `login' > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_window_controller.rb:25:in > `loginClient' > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23:in > `NSApplicationMain' > from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23 > > The Debugger has exited with status 1.The Debugger has exited with status 1. > ==end of trace== > |
From: Rich W. <rw...@gm...> - 2008-02-06 09:27:54
|
Hmm. That didn't work. I added $LOAD_PATH << "/System/Library/Frameworks/RubyCocoa.framework/Versions/ Current/Resources/ruby" And it now seems to find the osx/cocoa library, but it still crashes when trying to load RubyGem libraries. 2/5/08 9:41:26 PM [0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[346] / Users/rikiwarren/Desktop/StandAloneRubyRSS.app/Contents/Resources/ ThirdParty/rubygems.rb:280:in `insert': no implicit conversion from nil to integer (TypeError) I don't have time to try and debug this more right now. If you have any ideas, I'd love to hear them. Otherwise, I'll try to poke at it more later, and let you know what I find. -Rich- On Feb 4, 2008, at 2:44 AM, Eloy Duran wrote: > After you've added the copy files build phase, > you'll need to drag RubyCocoa.framework into that "copy files build > phase" too. > > However, if your app works with the default Leopard RubyCococa > and you're only targeting Leopard, then I would not bundle it > but rather fix your load path problem. > > So if you look at the rb_,main.rb file of your standaloneified bundle, > at the top you'll see some code that was added by Standaloneify. > Underneath that do something like: > $LOAD_PATH.unshift("/Library/Ruby/Site/1.8") > > Then you should probably be able to do: require 'osx/cocoa' > > Cheers, > Eloy > > On 4 feb 2008, at 10:28, Rich Warren wrote: > >> Ok, I tried to bundle the RubyCocoa framework, but Xcode won't seem >> to >> let me. >> >> I added a new copy files build phase. >> I set the destination to "Frameworks". >> I then added an existing framework, and selected RubyCocoa >> >> The "Add" button is highlighted. But pressing it doesn't seem to do >> anything. >> >> Clearly I'm doing something wrong here. How do I bundle RubyCocoa >> into >> my app? >> >> -Rich- >> >> On Feb 3, 2008, at 10:54 PM, Eloy Duran wrote: >> >>> Hi Rich, >>> >>> It's true that andy Leopard install will have RubyCocoa installed. >>> However iirc standaloneify will completely empty your load path >>> before starting the application. >>> This means that unless you've bundled the framework it won't be >>> found. >>> So my guess is that you haven't bundled the framework inside your >>> app, >>> which is ok of course, but in wich case you'll have to edit your >>> rb_main.rb >>> file after it has been standalonified to setup the correct load path >>> or maybe >>> even better; instead of doing "require 'osx/cocoa'" try to specify >>> the >>> full path. >>> >>> Cheers, >>> Eloy >>> >>> On 4 feb 2008, at 02:12, Rich Warren wrote: >>> >>>> Hi, >>>> >>>> I'm trying to embed some RubyGem libraries into a stand alone app. >>>> According to the web site, I used the following command: >>>> >>>> ruby standaloneify.rb -d RubyRSS_StandAlone.app RubyRSS.app >>>> >>>> Everything seemed fine. But when I tried to run the stand alone >>>> app, >>>> It fails to launch. I get the following message in the console: >>>> >>>> 2/3/08 3:03:57 PM >>>> [0x0 >>>> -0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] / >>>> Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/Resources/ >>>> rb_main.rb:25:in `require': no such file to load -- osx/cocoa >>>> (LoadError) >>>> >>>> 2/3/08 3:03:57 PM >>>> [0x0 >>>> -0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] >>>> from /Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/ >>>> Resources/rb_main.rb:25 >>>> >>>> 2/3/08 3:03:57 PM com.apple.launchd[63] >>>> ([0x0 >>>> -0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278]) >>>> Exited with exit code: 1 >>>> >>>> If I'm reading this right, it's having trouble finding the osx/ >>>> cocoa >>>> library. However, since I'm working on Leopard, all Leopard >>>> machines >>>> should have osx/cocoa installed by default, right? >>>> >>>> Am I doing something wrong? How do I get standaloneify to work on >>>> Leopard? >>>> >>>> Thanks, >>>> >>>> -Rich- >>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> Rubycocoa-talk mailing list >>>> Rub...@li... >>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>> >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Eloy D. <e....@su...> - 2008-02-04 12:44:54
|
After you've added the copy files build phase, you'll need to drag RubyCocoa.framework into that "copy files build phase" too. However, if your app works with the default Leopard RubyCococa and you're only targeting Leopard, then I would not bundle it but rather fix your load path problem. So if you look at the rb_,main.rb file of your standaloneified bundle, at the top you'll see some code that was added by Standaloneify. Underneath that do something like: $LOAD_PATH.unshift("/Library/Ruby/Site/1.8") Then you should probably be able to do: require 'osx/cocoa' Cheers, Eloy On 4 feb 2008, at 10:28, Rich Warren wrote: > Ok, I tried to bundle the RubyCocoa framework, but Xcode won't seem to > let me. > > I added a new copy files build phase. > I set the destination to "Frameworks". > I then added an existing framework, and selected RubyCocoa > > The "Add" button is highlighted. But pressing it doesn't seem to do > anything. > > Clearly I'm doing something wrong here. How do I bundle RubyCocoa into > my app? > > -Rich- > > On Feb 3, 2008, at 10:54 PM, Eloy Duran wrote: > >> Hi Rich, >> >> It's true that andy Leopard install will have RubyCocoa installed. >> However iirc standaloneify will completely empty your load path >> before starting the application. >> This means that unless you've bundled the framework it won't be >> found. >> So my guess is that you haven't bundled the framework inside your >> app, >> which is ok of course, but in wich case you'll have to edit your >> rb_main.rb >> file after it has been standalonified to setup the correct load path >> or maybe >> even better; instead of doing "require 'osx/cocoa'" try to specify >> the >> full path. >> >> Cheers, >> Eloy >> >> On 4 feb 2008, at 02:12, Rich Warren wrote: >> >>> Hi, >>> >>> I'm trying to embed some RubyGem libraries into a stand alone app. >>> According to the web site, I used the following command: >>> >>> ruby standaloneify.rb -d RubyRSS_StandAlone.app RubyRSS.app >>> >>> Everything seemed fine. But when I tried to run the stand alone app, >>> It fails to launch. I get the following message in the console: >>> >>> 2/3/08 3:03:57 PM >>> [0x0 >>> -0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] / >>> Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/Resources/ >>> rb_main.rb:25:in `require': no such file to load -- osx/cocoa >>> (LoadError) >>> >>> 2/3/08 3:03:57 PM >>> [0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] >>> from /Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/ >>> Resources/rb_main.rb:25 >>> >>> 2/3/08 3:03:57 PM com.apple.launchd[63] >>> ([0x0 >>> -0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278]) >>> Exited with exit code: 1 >>> >>> If I'm reading this right, it's having trouble finding the osx/cocoa >>> library. However, since I'm working on Leopard, all Leopard machines >>> should have osx/cocoa installed by default, right? >>> >>> Am I doing something wrong? How do I get standaloneify to work on >>> Leopard? >>> >>> Thanks, >>> >>> -Rich- >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Rich W. <rw...@gm...> - 2008-02-04 09:28:32
|
Ok, I tried to bundle the RubyCocoa framework, but Xcode won't seem to let me. I added a new copy files build phase. I set the destination to "Frameworks". I then added an existing framework, and selected RubyCocoa The "Add" button is highlighted. But pressing it doesn't seem to do anything. Clearly I'm doing something wrong here. How do I bundle RubyCocoa into my app? -Rich- On Feb 3, 2008, at 10:54 PM, Eloy Duran wrote: > Hi Rich, > > It's true that andy Leopard install will have RubyCocoa installed. > However iirc standaloneify will completely empty your load path > before starting the application. > This means that unless you've bundled the framework it won't be found. > So my guess is that you haven't bundled the framework inside your app, > which is ok of course, but in wich case you'll have to edit your > rb_main.rb > file after it has been standalonified to setup the correct load path > or maybe > even better; instead of doing "require 'osx/cocoa'" try to specify the > full path. > > Cheers, > Eloy > > On 4 feb 2008, at 02:12, Rich Warren wrote: > >> Hi, >> >> I'm trying to embed some RubyGem libraries into a stand alone app. >> According to the web site, I used the following command: >> >> ruby standaloneify.rb -d RubyRSS_StandAlone.app RubyRSS.app >> >> Everything seemed fine. But when I tried to run the stand alone app, >> It fails to launch. I get the following message in the console: >> >> 2/3/08 3:03:57 PM >> [0x0 >> -0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] / >> Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/Resources/ >> rb_main.rb:25:in `require': no such file to load -- osx/cocoa >> (LoadError) >> >> 2/3/08 3:03:57 PM >> [0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] >> from /Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/ >> Resources/rb_main.rb:25 >> >> 2/3/08 3:03:57 PM com.apple.launchd[63] >> ([0x0 >> -0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278]) >> Exited with exit code: 1 >> >> If I'm reading this right, it's having trouble finding the osx/cocoa >> library. However, since I'm working on Leopard, all Leopard machines >> should have osx/cocoa installed by default, right? >> >> Am I doing something wrong? How do I get standaloneify to work on >> Leopard? >> >> Thanks, >> >> -Rich- >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Eloy D. <e....@su...> - 2008-02-04 08:54:11
|
Hi Rich, It's true that andy Leopard install will have RubyCocoa installed. However iirc standaloneify will completely empty your load path before starting the application. This means that unless you've bundled the framework it won't be found. So my guess is that you haven't bundled the framework inside your app, which is ok of course, but in wich case you'll have to edit your rb_main.rb file after it has been standalonified to setup the correct load path or maybe even better; instead of doing "require 'osx/cocoa'" try to specify the full path. Cheers, Eloy On 4 feb 2008, at 02:12, Rich Warren wrote: > Hi, > > I'm trying to embed some RubyGem libraries into a stand alone app. > According to the web site, I used the following command: > > ruby standaloneify.rb -d RubyRSS_StandAlone.app RubyRSS.app > > Everything seemed fine. But when I tried to run the stand alone app, > It fails to launch. I get the following message in the console: > > 2/3/08 3:03:57 PM > [0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] / > Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/Resources/ > rb_main.rb:25:in `require': no such file to load -- osx/cocoa > (LoadError) > > 2/3/08 3:03:57 PM > [0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] > from /Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/ > Resources/rb_main.rb:25 > > 2/3/08 3:03:57 PM com.apple.launchd[63] > ([0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278]) > Exited with exit code: 1 > > If I'm reading this right, it's having trouble finding the osx/cocoa > library. However, since I'm working on Leopard, all Leopard machines > should have osx/cocoa installed by default, right? > > Am I doing something wrong? How do I get standaloneify to work on > Leopard? > > Thanks, > > -Rich- > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Rich W. <rw...@gm...> - 2008-02-04 02:28:57
|
Hi, I'm trying to embed some RubyGem libraries into a stand alone app. According to the web site, I used the following command: ruby standaloneify.rb -d RubyRSS_StandAlone.app RubyRSS.app Everything seemed fine. But when I tried to run the stand alone app, It fails to launch. I get the following message in the console: 2/3/08 3:03:57 PM [0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] / Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/Resources/ rb_main.rb:25:in `require': no such file to load -- osx/cocoa (LoadError) 2/3/08 3:03:57 PM [0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278] from /Users/rikiwarren/Desktop/RubyRSS_StandAlone.app/Contents/ Resources/rb_main.rb:25 2/3/08 3:03:57 PM com.apple.launchd[63] ([0x0-0x31031].com.apple.rubycocoa.NEWCOREDATAPROJECT.RubyRSSApp[278]) Exited with exit code: 1 If I'm reading this right, it's having trouble finding the osx/cocoa library. However, since I'm working on Leopard, all Leopard machines should have osx/cocoa installed by default, right? Am I doing something wrong? How do I get standaloneify to work on Leopard? Thanks, -Rich- |
From: Michal M. <mmi...@gm...> - 2008-02-03 14:47:13
|
Hey! I=92m new to ruby and rubycocoa and appreciate your help. I need to draw = =20 few graphs (sin cos I got some data) and I don't know how too run it =20 in xcode? I was looking @page = http://www.rubycocoa.com/cocoa-magic-for-gruff-graphs=20 ,but when I run it in terminal I got ruby test/test_line.rb -------------- ---------- ---------- PIMPIN -------------- ---------- ---------- Loaded suite test/test_line Started .............................rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 rotation=3D-90.0 ... Finished in 4.792656 seconds. 32 tests, 2 assertions, 0 failures, 0 errors that's all. Can someone let's say write really simple sample showing =20 sin graph? Michal= |
From: Avram L. <aj...@gm...> - 2008-02-03 14:31:26
|
I'm working on a RubyCocoa front-end for a Ruby library I wrote to access a certain web forum. The library uses the Tidy gem to normalize the messy HTML it gets from the web server before using REXML to parse out the needed content. This works fine for me when I'm using plain old Ruby, but when I call: Tidy.path=LOCAL_TIDY_LIB_PATH from my RubyCocoa app, I get a RuntimeError (trace below). As the trace shows, the error is thrown when dl/import.rb tries to load the local HTMLTidy library (/usr/lib/libtidy.dylib). My gut instinct here is that this a limitation of RubyCocoa -- I can't use dynamic loading. Is that the case? If so, is there a way to work around it? I've looked at the Tidy gem project documentation and the RubyCocoa documentation, and I don't see anything related to this. Thanks in advance for any and all advice, Avram Lyon Trace from XCode Debugger console follows: ==snip== /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23 /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:126:in `symbol': can't find the symbol `tidyCreate' (RuntimeError) from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:145:in `import' from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/dl/import.rb:61:in `extern' from /Library/Ruby/Gems/1.8/gems/tidy-1.1.2/lib/tidy/tidylib.rb:17:in `load' from /Library/Ruby/Gems/1.8/gems/tidy-1.1.2/lib/tidy.rb:46:in `path=' from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:195:in `tidy_up_html' from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:123:in `parse_v2' from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:114:in `parse' from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_client.rb:72:in `login' from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/plans_window_controller.rb:25:in `loginClient' from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23:in `NSApplicationMain' from /Development/Mac_Plans/build/Release/Mac_Plans.app/Contents/Resources/rb_main.rb:23 The Debugger has exited with status 1.The Debugger has exited with status 1. ==end of trace== |
From: Motohiro T. <mo...@gm...> - 2008-02-03 10:05:16
|
Hello, I wrote an article that describes how to create a Quicksilver plugin with RubyCocoa. http://blog.deadbeaf.org/archives/1890 It simply delegates actual plugin behavior to Ruby class... Does anyone have an idea to make it more simplified ? Any suggestion, improvements, feedbacks will make me happy. Thanks, -- mootoh |
From: Eloy D. <e....@su...> - 2008-02-02 14:34:27
|
No sorry, but there's some info on rubycocoa.com that might help you: http://www.rubycocoa.com/cocoa-magic-for-gruff-graphs Eloy On 2 feb 2008, at 15:30, Michal Malinowski wrote: > Hey Eloy! > > Thanks, I think it should work! But still more questions :) Do you =20 > know anything about drawing graphs? > > Michal > > > Wiadomo=C5=9B=C4=87 napisana w dniu 2008-02-02, o godz 15:18, przez = Eloy =20 > Duran: > >> Yeah sure, that could work. It's all just ruby in the end :) >> >> Cheers, >> Eloy >> >> On 2 feb 2008, at 15:15, Michal Malinowski wrote: >> >>> Hey! >>> >>> It will be only integer (initValue) data, and maybe I can save it =20= >>> in yaml? That's all I think. >>> >>> Best regards Michal >>> >>> Wiadomo=C5=9B=C4=87 napisana w dniu 2008-02-02, o godz 15:09, przez = Eloy =20 >>> Duran: >>> >>>> Hey Michal, >>>> >>>> Well that depends of course on what kind of data it is etc. >>>> And I think you'll have more success with this question on either =20= >>>> a pure ruby or cocoa mailing list. >>>> >>>> You could save it through conventional ruby ways, maybe Marshal =20 >>>> #dump/#load, which is more of a ruby-lang ml question. >>>> Or through cocoa ways, in which case this would be more of a =20 >>>> question for the cocoa-dev ml. >>>> >>>> Anyway, I would advice you to at least write a bit more context =20 >>>> of what it is that you are trying to save and if you have special =20= >>>> requirements. >>>> >>>> Eloy. >>>> >>>> On 2 feb 2008, at 15:01, Michal Malinowski wrote: >>>> >>>>> Hey! >>>>> >>>>> I'll try it later. But I got next question, I have data in " =20 >>>>> @@bundle =3D [@@bz1, @@bz2, @@bz3, @@bo1, @@bo2, @@bo3, @@czas, =20= >>>>> @@zakloceniabz1, @zakloceniabz2, @zakloceniabz3, @regulator]" =20 >>>>> and I need to save it to file, and read it from that file too. =20 >>>>> So mayby some clues. Thanks for any help. >>>>> >>>>> Best Regards Michal >>>>> Wiadomo=C5=9B=C4=87 napisana w dniu 2008-02-02, o godz 14:27, = przez Eloy =20 >>>>> Duran: >>>>> >>>>>> Hi Michal, >>>>>> >>>>>> Well it seems that you are sending the #bounds=3D message >>>>>> to the NSApplication instance rather than to a Game instance. >>>>>> >>>>>> This is the code: >>>>>> >>>>>> class GameView < OSX::NSView >>>>>> ib_outlets :game >>>>>> >>>>>> def awakeFromNib >>>>>> window.setOpaque(false) >>>>>> @game.bounds =3D bounds >>>>>> @timer =3D =20 >>>>>> OSX=20 >>>>>> ::NSTimer=20 >>>>>> .scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_=20= >>>>>> (1.0/60.0, self, :tick, nil, true) >>>>>> end >>>>>> end >>>>>> So the line that's causing the error is: "@game.bounds =3D = bounds" >>>>>> because if an objc object does not respond to a setter method, =20= >>>>>> in this case #bounds=3D(val), >>>>>> RubyCocoa will try to turn it into a objc (old) style setter =20 >>>>>> method, which would be #setBounds(val). >>>>>> So maybe you have connected the ib_outlet to the wrong object =20 >>>>>> in IB? >>>>>> >>>>>> Hope this helps. >>>>>> >>>>>> Eloy >>>>>> On 2 feb 2008, at 11:50, Michal Malinowski wrote: >>>>>> >>>>>>> Hey! >>>>>>> I got that Rubyrocks example from = http://www.rubycocoa.com/ruby-rocks/=20 >>>>>>> and I got problem while I'm Building program. The problem =20 >>>>>>> from console is >>>>>>> 2008-02-02 11:47:08.890 grafika1[653:10b] =20 >>>>>>> GameView#awakeFromNib: OSX::OCMessageSendException: Can't get =20= >>>>>>> Objective-C method signature for selector 'setBounds:' of =20 >>>>>>> receiver #<OSX::NSApplication:0x2d348 class=3D'NSApplication' =20= >>>>>>> id=3D0x3e79e0> >>>>>>> >>>>>>> Best Regards Michal >>>>>>> = ------------------------------------------------------------------------- >>>>>>> This SF.net email is sponsored by: Microsoft >>>>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>>>>> Rubycocoa-talk mailing list >>>>>>> Rub...@li... >>>>>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>>>>> >>>>>> = ------------------------------------------------------------------------- >>>>>> This SF.net email is sponsored by: Microsoft >>>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>>>> Rubycocoa-talk mailing list >>>>>> Rub...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>>>> >>>>> = ------------------------------------------------------------------------- >>>>> This SF.net email is sponsored by: Microsoft >>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>>> Rubycocoa-talk mailing list >>>>> Rub...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>>> >>>> = ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>> Rubycocoa-talk mailing list >>>> Rub...@li... >>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>> >>> = ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> >> = ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > = ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Michal M. <mmi...@gm...> - 2008-02-02 14:30:12
|
Hey Eloy! Thanks, I think it should work! But still more questions :) Do you =20 know anything about drawing graphs? Michal Wiadomo=B6=E6 napisana w dniu 2008-02-02, o godz 15:18, przez Eloy = Duran: > Yeah sure, that could work. It's all just ruby in the end :) > > Cheers, > Eloy > > On 2 feb 2008, at 15:15, Michal Malinowski wrote: > >> Hey! >> >> It will be only integer (initValue) data, and maybe I can save it =20 >> in yaml? That's all I think. >> >> Best regards Michal >> >> Wiadomo=B6=E6 napisana w dniu 2008-02-02, o godz 15:09, przez Eloy = Duran: >> >>> Hey Michal, >>> >>> Well that depends of course on what kind of data it is etc. >>> And I think you'll have more success with this question on either =20= >>> a pure ruby or cocoa mailing list. >>> >>> You could save it through conventional ruby ways, maybe Marshal =20 >>> #dump/#load, which is more of a ruby-lang ml question. >>> Or through cocoa ways, in which case this would be more of a =20 >>> question for the cocoa-dev ml. >>> >>> Anyway, I would advice you to at least write a bit more context of =20= >>> what it is that you are trying to save and if you have special =20 >>> requirements. >>> >>> Eloy. >>> >>> On 2 feb 2008, at 15:01, Michal Malinowski wrote: >>> >>>> Hey! >>>> >>>> I'll try it later. But I got next question, I have data in " =20 >>>> @@bundle =3D [@@bz1, @@bz2, @@bz3, @@bo1, @@bo2, @@bo3, @@czas, =20 >>>> @@zakloceniabz1, @zakloceniabz2, @zakloceniabz3, @regulator]" and =20= >>>> I need to save it to file, and read it from that file too. So =20 >>>> mayby some clues. Thanks for any help. >>>> >>>> Best Regards Michal >>>> Wiadomo=B6=E6 napisana w dniu 2008-02-02, o godz 14:27, przez Eloy =20= >>>> Duran: >>>> >>>>> Hi Michal, >>>>> >>>>> Well it seems that you are sending the #bounds=3D message >>>>> to the NSApplication instance rather than to a Game instance. >>>>> >>>>> This is the code: >>>>> >>>>> class GameView < OSX::NSView >>>>> ib_outlets :game >>>>> >>>>> def awakeFromNib >>>>> window.setOpaque(false) >>>>> @game.bounds =3D bounds >>>>> @timer =3D =20 >>>>> OSX=20 >>>>> ::NSTimer=20 >>>>> .scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_=20= >>>>> (1.0/60.0, self, :tick, nil, true) >>>>> end >>>>> end >>>>> So the line that's causing the error is: "@game.bounds =3D bounds" >>>>> because if an objc object does not respond to a setter method, =20 >>>>> in this case #bounds=3D(val), >>>>> RubyCocoa will try to turn it into a objc (old) style setter =20 >>>>> method, which would be #setBounds(val). >>>>> So maybe you have connected the ib_outlet to the wrong object in =20= >>>>> IB? >>>>> >>>>> Hope this helps. >>>>> >>>>> Eloy >>>>> On 2 feb 2008, at 11:50, Michal Malinowski wrote: >>>>> >>>>>> Hey! >>>>>> I got that Rubyrocks example from = http://www.rubycocoa.com/ruby-rocks/=20 >>>>>> and I got problem while I'm Building program. The problem from =20= >>>>>> console is >>>>>> 2008-02-02 11:47:08.890 grafika1[653:10b] =20 >>>>>> GameView#awakeFromNib: OSX::OCMessageSendException: Can't get =20 >>>>>> Objective-C method signature for selector 'setBounds:' of =20 >>>>>> receiver #<OSX::NSApplication:0x2d348 class=3D'NSApplication' =20 >>>>>> id=3D0x3e79e0> >>>>>> >>>>>> Best Regards Michal >>>>>> = ------------------------------------------------------------------------- >>>>>> This SF.net email is sponsored by: Microsoft >>>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>>>> Rubycocoa-talk mailing list >>>>>> Rub...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>>>> >>>>> = ------------------------------------------------------------------------- >>>>> This SF.net email is sponsored by: Microsoft >>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>>> Rubycocoa-talk mailing list >>>>> Rub...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>>> >>>> = ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>> Rubycocoa-talk mailing list >>>> Rub...@li... >>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>> >>> = ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> >> = ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > = ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Eloy D. <e....@su...> - 2008-02-02 14:19:01
|
Yeah sure, that could work. It's all just ruby in the end :) Cheers, Eloy On 2 feb 2008, at 15:15, Michal Malinowski wrote: > Hey! > > It will be only integer (initValue) data, and maybe I can save it in =20= > yaml? That's all I think. > > Best regards Michal > > Wiadomo=C5=9B=C4=87 napisana w dniu 2008-02-02, o godz 15:09, przez = Eloy =20 > Duran: > >> Hey Michal, >> >> Well that depends of course on what kind of data it is etc. >> And I think you'll have more success with this question on either a =20= >> pure ruby or cocoa mailing list. >> >> You could save it through conventional ruby ways, maybe Marshal =20 >> #dump/#load, which is more of a ruby-lang ml question. >> Or through cocoa ways, in which case this would be more of a =20 >> question for the cocoa-dev ml. >> >> Anyway, I would advice you to at least write a bit more context of =20= >> what it is that you are trying to save and if you have special =20 >> requirements. >> >> Eloy. >> >> On 2 feb 2008, at 15:01, Michal Malinowski wrote: >> >>> Hey! >>> >>> I'll try it later. But I got next question, I have data in " =20 >>> @@bundle =3D [@@bz1, @@bz2, @@bz3, @@bo1, @@bo2, @@bo3, @@czas, =20 >>> @@zakloceniabz1, @zakloceniabz2, @zakloceniabz3, @regulator]" and =20= >>> I need to save it to file, and read it from that file too. So =20 >>> mayby some clues. Thanks for any help. >>> >>> Best Regards Michal >>> Wiadomo=C5=9B=C4=87 napisana w dniu 2008-02-02, o godz 14:27, przez = Eloy =20 >>> Duran: >>> >>>> Hi Michal, >>>> >>>> Well it seems that you are sending the #bounds=3D message >>>> to the NSApplication instance rather than to a Game instance. >>>> >>>> This is the code: >>>> >>>> class GameView < OSX::NSView >>>> ib_outlets :game >>>> >>>> def awakeFromNib >>>> window.setOpaque(false) >>>> @game.bounds =3D bounds >>>> @timer =3D =20 >>>> OSX=20 >>>> ::NSTimer=20 >>>> .scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_=20= >>>> (1.0/60.0, self, :tick, nil, true) >>>> end >>>> end >>>> So the line that's causing the error is: "@game.bounds =3D bounds" >>>> because if an objc object does not respond to a setter method, in =20= >>>> this case #bounds=3D(val), >>>> RubyCocoa will try to turn it into a objc (old) style setter =20 >>>> method, which would be #setBounds(val). >>>> So maybe you have connected the ib_outlet to the wrong object in =20= >>>> IB? >>>> >>>> Hope this helps. >>>> >>>> Eloy >>>> On 2 feb 2008, at 11:50, Michal Malinowski wrote: >>>> >>>>> Hey! >>>>> I got that Rubyrocks example from = http://www.rubycocoa.com/ruby-rocks/=20 >>>>> and I got problem while I'm Building program. The problem from =20= >>>>> console is >>>>> 2008-02-02 11:47:08.890 grafika1[653:10b] GameView#awakeFromNib: =20= >>>>> OSX::OCMessageSendException: Can't get Objective-C method =20 >>>>> signature for selector 'setBounds:' of receiver =20 >>>>> #<OSX::NSApplication:0x2d348 class=3D'NSApplication' id=3D0x3e79e0> >>>>> >>>>> Best Regards Michal >>>>> = ------------------------------------------------------------------------- >>>>> This SF.net email is sponsored by: Microsoft >>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>>> Rubycocoa-talk mailing list >>>>> Rub...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>>> >>>> = ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>> Rubycocoa-talk mailing list >>>> Rub...@li... >>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>> >>> = ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> >> = ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > = ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Michal M. <mmi...@gm...> - 2008-02-02 14:15:23
|
Hey! It will be only integer (initValue) data, and maybe I can save it in =20 yaml? That's all I think. Best regards Michal Wiadomo=B6=E6 napisana w dniu 2008-02-02, o godz 15:09, przez Eloy = Duran: > Hey Michal, > > Well that depends of course on what kind of data it is etc. > And I think you'll have more success with this question on either a =20= > pure ruby or cocoa mailing list. > > You could save it through conventional ruby ways, maybe Marshal =20 > #dump/#load, which is more of a ruby-lang ml question. > Or through cocoa ways, in which case this would be more of a =20 > question for the cocoa-dev ml. > > Anyway, I would advice you to at least write a bit more context of =20 > what it is that you are trying to save and if you have special =20 > requirements. > > Eloy. > > On 2 feb 2008, at 15:01, Michal Malinowski wrote: > >> Hey! >> >> I'll try it later. But I got next question, I have data in " =20 >> @@bundle =3D [@@bz1, @@bz2, @@bz3, @@bo1, @@bo2, @@bo3, @@czas, =20 >> @@zakloceniabz1, @zakloceniabz2, @zakloceniabz3, @regulator]" and I =20= >> need to save it to file, and read it from that file too. So mayby =20 >> some clues. Thanks for any help. >> >> Best Regards Michal >> Wiadomo=B6=E6 napisana w dniu 2008-02-02, o godz 14:27, przez Eloy = Duran: >> >>> Hi Michal, >>> >>> Well it seems that you are sending the #bounds=3D message >>> to the NSApplication instance rather than to a Game instance. >>> >>> This is the code: >>> >>> class GameView < OSX::NSView >>> ib_outlets :game >>> >>> def awakeFromNib >>> window.setOpaque(false) >>> @game.bounds =3D bounds >>> @timer =3D =20 >>> OSX=20 >>> ::NSTimer=20 >>> .scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_=20 >>> (1.0/60.0, self, :tick, nil, true) >>> end >>> end >>> So the line that's causing the error is: "@game.bounds =3D bounds" >>> because if an objc object does not respond to a setter method, in =20= >>> this case #bounds=3D(val), >>> RubyCocoa will try to turn it into a objc (old) style setter =20 >>> method, which would be #setBounds(val). >>> So maybe you have connected the ib_outlet to the wrong object in IB? >>> >>> Hope this helps. >>> >>> Eloy >>> On 2 feb 2008, at 11:50, Michal Malinowski wrote: >>> >>>> Hey! >>>> I got that Rubyrocks example from = http://www.rubycocoa.com/ruby-rocks/=20 >>>> and I got problem while I'm Building program. The problem from =20 >>>> console is >>>> 2008-02-02 11:47:08.890 grafika1[653:10b] GameView#awakeFromNib: =20= >>>> OSX::OCMessageSendException: Can't get Objective-C method =20 >>>> signature for selector 'setBounds:' of receiver =20 >>>> #<OSX::NSApplication:0x2d348 class=3D'NSApplication' id=3D0x3e79e0> >>>> >>>> Best Regards Michal >>>> = ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>>> Rubycocoa-talk mailing list >>>> Rub...@li... >>>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>> >>> = ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> >> = ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > = ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > = http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/___________________= ____________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |