From: Wolfgang K. <kit...@ka...> - 2010-02-15 19:01:24
|
I am on SnowLeopard (10.6.2) and in /Developer/Documentation/RubyCocoa/Frameworks/html are only a few japanese files. So I downloaded the RubyCocoa-1.0.1 tarball. After "ruby install.rb config" and "ruby install.rb setup" without any problems I get an error when issuing "ruby install.rb doc": myMini-2:RubyCocoa-1.0.1 kittekat$ ruby install.rb doc install.rb: entering doc phase... ---> framework /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby gen_bridge_doc.rb build ../bridge-doc mkdir -p /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge-doc /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -I../../ext/rubycocoa -I../../lib gen_bridge_doc/rdocify_framework.rb '/Developer/ADC Reference Library/documentation/Cocoa/Reference/ApplicationKit/' /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge-doc/ruby Working on: ApplicationKit gen_bridge_doc/rdocify_framework.rb:29:in `open': No such file or directory - /Developer/ADC Reference Library/documentation/Cocoa/Reference/ApplicationKit/Classes/ (Errno::ENOENT) from gen_bridge_doc/rdocify_framework.rb:29:in `entries' from gen_bridge_doc/rdocify_framework.rb:29:in `get_reference_files' from gen_bridge_doc/rdocify_framework.rb:150 gen_bridge_doc.rb:35:in `command': 'system /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -I../../ext/rubycocoa -I../../lib gen_bridge_doc/rdocify_framework.rb '/Developer/ADC Reference Library/documentation/Cocoa/Reference/ApplicationKit/' /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge-doc/ruby' failed (RuntimeError) from gen_bridge_doc.rb:39:in `ruby' from gen_bridge_doc.rb:99 from gen_bridge_doc.rb:98:in `each' from gen_bridge_doc.rb:98 rm -rf bridge-doc doc failed hook /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/pre-doc.rb failed: 'system /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby gen_bridge_doc.rb build ../bridge-doc' failed try 'ruby install.rb --help' for usage myMini-2:RubyCocoa-1.0.1 kittekat$ Did I miss to install something, or is this step broken in the actual MAC OSX version? Best regards Kittekat P.S.: The Bridgedoc page (http://rubycocoa.sourceforge.net/BridgeDoc) references an external page (http://www.superalloy.nl/blog/?p=6∞) which does not exist. |
From: Allison N. <dem...@ma...> - 2010-02-15 19:40:40
|
Hi Wolfgang, OK this one is an easy fix. In /Users/kittekat/RubyCocoa/RubyCocoa/ RubyCocoa-1.0.1/framework/tool there is a file called gen_bridge_doc.rb If you open it up, you'll see on line 77 why you have a problem... DOCUMENTATION_PATH = if `sw_vers -productVersion`.strip =~ /^10\.5/ '/Developer/Documentation/DocSets/ com.apple.ADC_Reference_Library.CoreReference.docset/Contents/ Resources/Documents/documentation' else '/Developer/ADC Reference Library/documentation' end Apple changed the layout of documentation in Leopard. Unfortunately the gen_bridge_doc tool has not been updated to recognise that 10.6 now exists, so it is defaulting back to the old doc layout of 10.4 and earlier. To make doc installation work again, you just need to change the code so that it matches 10.6 rather than 10.5. Better yet would be to modify the code so that it works for any version of MacOSX from Leopard onwards, and to submit the patch to the maintainers. Hope that helps. Alli Le 15 févr. 10 à 19:43, Wolfgang Kittenberger a écrit : > I am on SnowLeopard (10.6.2) and in /Developer/Documentation/ > RubyCocoa/Frameworks/html are only a few japanese files. So I > downloaded the RubyCocoa-1.0.1 tarball. After "ruby install.rb > config" and "ruby install.rb setup" without any problems I get an > error when issuing "ruby install.rb doc": > > myMini-2:RubyCocoa-1.0.1 kittekat$ ruby install.rb doc > install.rb: entering doc phase... > ---> framework > /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby > gen_bridge_doc.rb build ../bridge-doc > mkdir -p /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/ > framework/bridge-doc > /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby - > I../../ext/rubycocoa -I../../lib gen_bridge_doc/ > rdocify_framework.rb '/Developer/ADC Reference Library/ > documentation/Cocoa/Reference/ApplicationKit/' /Users/kittekat/ > RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge-doc/ruby > > Working on: ApplicationKit > > gen_bridge_doc/rdocify_framework.rb:29:in `open': No such file or > directory - /Developer/ADC Reference Library/documentation/Cocoa/ > Reference/ApplicationKit/Classes/ (Errno::ENOENT) > from gen_bridge_doc/rdocify_framework.rb:29:in `entries' > from gen_bridge_doc/rdocify_framework.rb:29:in `get_reference_files' > from gen_bridge_doc/rdocify_framework.rb:150 > gen_bridge_doc.rb:35:in `command': 'system /System/Library/ > Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -I../../ext/ > rubycocoa -I../../lib gen_bridge_doc/rdocify_framework.rb '/ > Developer/ADC Reference Library/documentation/Cocoa/Reference/ > ApplicationKit/' /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/ > framework/bridge-doc/ruby' failed (RuntimeError) > from gen_bridge_doc.rb:39:in `ruby' > from gen_bridge_doc.rb:99 > from gen_bridge_doc.rb:98:in `each' > from gen_bridge_doc.rb:98 > rm -rf bridge-doc > doc failed > hook /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/ > pre-doc.rb failed: > 'system /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/ > bin/ruby gen_bridge_doc.rb build ../bridge-doc' failed > try 'ruby install.rb --help' for usage > myMini-2:RubyCocoa-1.0.1 kittekat$ > > Did I miss to install something, or is this step broken in the > actual MAC OSX version? > > Best regards > Kittekat > > P.S.: > The Bridgedoc page (http://rubycocoa.sourceforge.net/BridgeDoc) > references an external page (http://www.superalloy.nl/blog/?p=6∞) > which does not exist. > ------------------------------------------------------------------------------ > SOLARIS 10 is the OS for Data Centers - provides features such as > DTrace, > Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW > http://p.sf.net/sfu/solaris-dev2dev_______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Wolfgang K. <kit...@ka...> - 2010-02-15 20:53:59
|
Hello, Great! Thanks for the hint! But behind this solved obstacle there is just the next: myMini-2:RubyCocoa-1.0.1 kittekat$ ruby install.rb doc install.rb: entering doc phase... ---> framework /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby gen_bridge_doc.rb build ../bridge-doc mkdir -p /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge-doc /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -I../../ext/rubycocoa -I../../lib gen_bridge_doc/rdocify_framework.rb '/Developer/Documentation/DocSets/com.apple.ADC_Reference_Library.CoreReference.docset/Contents/Resources/Documents/documentation/Cocoa/Reference/ApplicationKit/' /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge-doc/ruby Working on: ApplicationKit mkdir -p /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge-doc/ruby Processing reference file: CIColor_AppKitAdditions /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/tool/gen_bridge_doc/lib/cocoa_ref.rb:70:in `join': can't convert nil into String (TypeError) from /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/tool/gen_bridge_doc/lib/cocoa_ref.rb:70:in `initialize' from gen_bridge_doc/rdocify_framework.rb:174:in `new' from gen_bridge_doc/rdocify_framework.rb:174 from gen_bridge_doc/rdocify_framework.rb:171:in `each' from gen_bridge_doc/rdocify_framework.rb:171 gen_bridge_doc.rb:35:in `command': 'system /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -I../../ext/rubycocoa -I../../lib gen_bridge_doc/rdocify_framework.rb '/Developer/Documentation/DocSets/com.apple.ADC_Reference_Library.CoreReference.docset/Contents/Resources/Documents/documentation/Cocoa/Reference/ApplicationKit/' /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge-doc/ruby' failed (RuntimeError) from gen_bridge_doc.rb:39:in `ruby' from gen_bridge_doc.rb:99 from gen_bridge_doc.rb:98:in `each' from gen_bridge_doc.rb:98 rm -rf bridge-doc doc failed hook /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/pre-doc.rb failed: 'system /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby gen_bridge_doc.rb build ../bridge-doc' failed try 'ruby install.rb --help' for usage myMini-2:RubyCocoa-1.0.1 kittekat$ Following your method by checking the source code in found in "cocoa_ref.rb in line 70: # Check if there is a overrides file in the override_dir for the given class class_overrides_file = File.join(File.dirname(File.expand_path(__FILE__)), @framework, @class_def.output_filename) Looks like some option is checked. Did not find anything about an override_dir in the --help output of install.rb. Anyway, here is the current configuration: myMini-2:RubyCocoa-1.0.1 kittekat$ ruby install.rb show prefix /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr install-prefix $prefix std-ruby $install-prefix/lib/ruby/1.8 site-ruby /Library/Ruby/Site/1.8 bin-dir $install-prefix/bin rb-dir $site-ruby so-dir /Library/Ruby/Site/1.8/universal-darwin10.0 data-dir $install-prefix/share ruby-path /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby ruby-prog /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby make-prog make without-ext no install-root (not specified) frameworks /Library/Frameworks xcode-extras /Library/Application Support/Developer/Shared/Xcode/ examples /Developer/Examples documentation /Developer/Documentation gen-bridge-support no build-as-embeddable yes ruby-header-dir /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin10.0 libruby-path /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/libruby.1.dylib ri-dir /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/share/ri/1.8/site macosx-deployment-target 10.6 sdkroot (not specified) target-archs i386 x86_64 rubycocoa-version 1.0.1 rubycocoa-version-short 1.0.1 rubycocoa-release-date 2009-10-18 rubycocoa-svn-revision 2282 rubycocoa-framework-version A myMini-2:RubyCocoa-1.0.1 kittekat$ Any hint? Best regards Kittekat |
From: Allison N. <dem...@ma...> - 2010-02-15 21:58:37
|
OK, I don't have Snow Leopard installed, so I can't figure this one out. gen_bridge_doc works basically by identifying all of the key frameworks, finding their original reference documentation, scraping the class information out of the html files, and then reformatting it into RubyCocoa method names. The bad news is that after attempting the scraping (and I don't know if this applies to just one html file or all of them) the html parser was not able to identify some of the key information in the file, with a resulting exception being thrown. You could try, as a quick hack, patching /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/ tool/gen_bridge_doc/lib/lib/class_def.rb I think that what is happening is that in this file, in CocoaRef::ClassDef.output_file, it just isn't able to match the file up to a type. Try modifying this method to return an empty string if the type is never matched, and see what that gives you. Html scraping is always a delicate affair, if the format of the scraped doc changes even slightly, the scraper tends to fail catastrophically. as would seem to be the case here... Anyway, good luck with debugging it further. Alli Le 15 févr. 10 à 21:26, Wolfgang Kittenberger a écrit : > Hello, > > Great! Thanks for the hint! But behind this solved obstacle there > is just the next: > > myMini-2:RubyCocoa-1.0.1 kittekat$ ruby install.rb doc > install.rb: entering doc phase... > ---> framework > /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby > gen_bridge_doc.rb build ../bridge-doc > mkdir -p /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/ > framework/bridge-doc > /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby - > I../../ext/rubycocoa -I../../lib gen_bridge_doc/ > rdocify_framework.rb '/Developer/Documentation/DocSets/ > com.apple.ADC_Reference_Library.CoreReference.docset/Contents/ > Resources/Documents/documentation/Cocoa/Reference/ApplicationKit/' / > Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge- > doc/ruby > > Working on: ApplicationKit > > mkdir -p /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/ > framework/bridge-doc/ruby > Processing reference file: CIColor_AppKitAdditions > /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/tool/ > gen_bridge_doc/lib/cocoa_ref.rb:70:in `join': can't convert nil into > String (TypeError) > from /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/ > tool/gen_bridge_doc/lib/cocoa_ref.rb:70:in `initialize' > from gen_bridge_doc/rdocify_framework.rb:174:in `new' > from gen_bridge_doc/rdocify_framework.rb:174 > from gen_bridge_doc/rdocify_framework.rb:171:in `each' > from gen_bridge_doc/rdocify_framework.rb:171 > gen_bridge_doc.rb:35:in `command': 'system /System/Library/ > Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -I../../ext/ > rubycocoa -I../../lib gen_bridge_doc/rdocify_framework.rb '/ > Developer/Documentation/DocSets/ > com.apple.ADC_Reference_Library.CoreReference.docset/Contents/ > Resources/Documents/documentation/Cocoa/Reference/ApplicationKit/' / > Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge- > doc/ruby' failed (RuntimeError) > from gen_bridge_doc.rb:39:in `ruby' > from gen_bridge_doc.rb:99 > from gen_bridge_doc.rb:98:in `each' > from gen_bridge_doc.rb:98 > rm -rf bridge-doc > doc failed > hook /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/ > pre-doc.rb failed: > 'system /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/ > bin/ruby gen_bridge_doc.rb build ../bridge-doc' failed > try 'ruby install.rb --help' for usage > myMini-2:RubyCocoa-1.0.1 kittekat$ > > Following your method by checking the source code in found in > "cocoa_ref.rb in line 70: > > # Check if there is a overrides file in the override_dir for > the given class > class_overrides_file = > File.join(File.dirname(File.expand_path(__FILE__)), @framework, > @class_def.output_filename) > > Looks like some option is checked. Did not find anything about an > override_dir in the --help output of install.rb. > > Anyway, here is the current configuration: > > myMini-2:RubyCocoa-1.0.1 kittekat$ ruby install.rb show > prefix /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr > install-prefix $prefix > std-ruby $install-prefix/lib/ruby/1.8 > site-ruby /Library/Ruby/Site/1.8 > bin-dir $install-prefix/bin > rb-dir $site-ruby > so-dir /Library/Ruby/Site/1.8/universal-darwin10.0 > data-dir $install-prefix/share > ruby-path /System/Library/Frameworks/Ruby.framework/Versions/1.8/ > usr/bin/ruby > ruby-prog /System/Library/Frameworks/Ruby.framework/Versions/1.8/ > usr/bin/ruby > make-prog make > without-ext no > install-root (not specified) > frameworks /Library/Frameworks > xcode-extras /Library/Application Support/Developer/Shared/Xcode/ > examples /Developer/Examples > documentation /Developer/Documentation > gen-bridge-support no > build-as-embeddable yes > ruby-header-dir /System/Library/Frameworks/Ruby.framework/Versions/ > 1.8/usr/lib/ruby/1.8/universal-darwin10.0 > libruby-path /System/Library/Frameworks/Ruby.framework/Versions/1.8/ > usr/lib/libruby.1.dylib > ri-dir /System/Library/Frameworks/Ruby.framework/Versions/1.8/ > usr/share/ri/1.8/site > macosx-deployment-target 10.6 > sdkroot (not specified) > target-archs i386 x86_64 > rubycocoa-version 1.0.1 > rubycocoa-version-short 1.0.1 > rubycocoa-release-date 2009-10-18 > rubycocoa-svn-revision 2282 > rubycocoa-framework-version A > myMini-2:RubyCocoa-1.0.1 kittekat$ > > Any hint? > > Best regards > Kittekat > |
From: Eloy D. <elo...@gm...> - 2010-02-16 18:00:59
|
Hi, This tool has not been updated in quite a while and since Apple changes it's doc format all the time, it was inevitable that there would be a point where this wouldn't work. So I'd suggest to just skip this step and read the docs in xcode or on apple.com. Cheers, Eloy On 15 feb 2010, at 22:58, Allison Newman wrote: > OK, I don't have Snow Leopard installed, so I can't figure this one > out. gen_bridge_doc works basically by identifying all of the key > frameworks, finding their original reference documentation, scraping > the class information out of the html files, and then reformatting > it into RubyCocoa method names. > > The bad news is that after attempting the scraping (and I don't know > if this applies to just one html file or all of them) the html > parser was not able to identify some of the key information in the > file, with a resulting exception being thrown. You could try, as a > quick hack, patching /Users/kittekat/RubyCocoa/RubyCocoa/ > RubyCocoa-1.0.1/framework/tool/gen_bridge_doc/lib/lib/class_def.rb > > I think that what is happening is that in this file, in > CocoaRef::ClassDef.output_file, it just isn't able to match the file > up to a type. Try modifying this method to return an empty string if > the type is never matched, and see what that gives you. > > Html scraping is always a delicate affair, if the format of the > scraped doc changes even slightly, the scraper tends to fail > catastrophically. as would seem to be the case here... Anyway, good > luck with debugging it further. > > Alli > > > Le 15 févr. 10 à 21:26, Wolfgang Kittenberger a écrit : > >> Hello, >> >> Great! Thanks for the hint! But behind this solved obstacle there >> is just the next: >> >> myMini-2:RubyCocoa-1.0.1 kittekat$ ruby install.rb doc >> install.rb: entering doc phase... >> ---> framework >> /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby >> gen_bridge_doc.rb build ../bridge-doc >> mkdir -p /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/ >> framework/bridge-doc >> /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby >> -I../../ext/rubycocoa -I../../lib gen_bridge_doc/ >> rdocify_framework.rb '/Developer/Documentation/DocSets/ >> com.apple.ADC_Reference_Library.CoreReference.docset/Contents/ >> Resources/Documents/documentation/Cocoa/Reference/ApplicationKit/' / >> Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge- >> doc/ruby >> >> Working on: ApplicationKit >> >> mkdir -p /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/ >> framework/bridge-doc/ruby >> Processing reference file: CIColor_AppKitAdditions >> /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/tool/ >> gen_bridge_doc/lib/cocoa_ref.rb:70:in `join': can't convert nil >> into String (TypeError) >> from /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/ >> tool/gen_bridge_doc/lib/cocoa_ref.rb:70:in `initialize' >> from gen_bridge_doc/rdocify_framework.rb:174:in `new' >> from gen_bridge_doc/rdocify_framework.rb:174 >> from gen_bridge_doc/rdocify_framework.rb:171:in `each' >> from gen_bridge_doc/rdocify_framework.rb:171 >> gen_bridge_doc.rb:35:in `command': 'system /System/Library/ >> Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -I../../ext/ >> rubycocoa -I../../lib gen_bridge_doc/rdocify_framework.rb '/ >> Developer/Documentation/DocSets/ >> com.apple.ADC_Reference_Library.CoreReference.docset/Contents/ >> Resources/Documents/documentation/Cocoa/Reference/ApplicationKit/' / >> Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/bridge- >> doc/ruby' failed (RuntimeError) >> from gen_bridge_doc.rb:39:in `ruby' >> from gen_bridge_doc.rb:99 >> from gen_bridge_doc.rb:98:in `each' >> from gen_bridge_doc.rb:98 >> rm -rf bridge-doc >> doc failed >> hook /Users/kittekat/RubyCocoa/RubyCocoa/RubyCocoa-1.0.1/framework/ >> pre-doc.rb failed: >> 'system /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/ >> bin/ruby gen_bridge_doc.rb build ../bridge-doc' failed >> try 'ruby install.rb --help' for usage >> myMini-2:RubyCocoa-1.0.1 kittekat$ >> >> Following your method by checking the source code in found in >> "cocoa_ref.rb in line 70: >> >> # Check if there is a overrides file in the override_dir for >> the given class >> class_overrides_file = File.join(File.dirname(File.expand_path >> (__FILE__)), @framework, @class_def.output_filename) >> >> Looks like some option is checked. Did not find anything about an >> override_dir in the --help output of install.rb. >> >> Anyway, here is the current configuration: >> >> myMini-2:RubyCocoa-1.0.1 kittekat$ ruby install.rb show >> prefix /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr >> install-prefix $prefix >> std-ruby $install-prefix/lib/ruby/1.8 >> site-ruby /Library/Ruby/Site/1.8 >> bin-dir $install-prefix/bin >> rb-dir $site-ruby >> so-dir /Library/Ruby/Site/1.8/universal-darwin10.0 >> data-dir $install-prefix/share >> ruby-path /System/Library/Frameworks/Ruby.framework/Versions/1.8/ >> usr/bin/ruby >> ruby-prog /System/Library/Frameworks/Ruby.framework/Versions/1.8/ >> usr/bin/ruby >> make-prog make >> without-ext no >> install-root (not specified) >> frameworks /Library/Frameworks >> xcode-extras /Library/Application Support/Developer/Shared/Xcode/ >> examples /Developer/Examples >> documentation /Developer/Documentation >> gen-bridge-support no >> build-as-embeddable yes >> ruby-header-dir /System/Library/Frameworks/Ruby.framework/Versions/ >> 1.8/usr/lib/ruby/1.8/universal-darwin10.0 >> libruby-path /System/Library/Frameworks/Ruby.framework/Versions/1.8/ >> usr/lib/libruby.1.dylib >> ri-dir /System/Library/Frameworks/Ruby.framework/Versions/1.8/ >> usr/share/ri/1.8/site >> macosx-deployment-target 10.6 >> sdkroot (not specified) >> target-archs i386 x86_64 >> rubycocoa-version 1.0.1 >> rubycocoa-version-short 1.0.1 >> rubycocoa-release-date 2009-10-18 >> rubycocoa-svn-revision 2282 >> rubycocoa-framework-version A >> myMini-2:RubyCocoa-1.0.1 kittekat$ >> >> Any hint? >> >> Best regards >> Kittekat >> > > ------------------------------------------------------------------------------ > SOLARIS 10 is the OS for Data Centers - provides features such as > DTrace, > Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW > http://p.sf.net/sfu/solaris-dev2dev_______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Wolfgang K. <kit...@ka...> - 2010-02-16 19:05:04
|
Hello, I switched to my Leopard system (10.5.8), downloaded the RubyCocoa-0.13.2 tarball and could so generate the bridge-doc without any problems. Regards Kittekat |