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: Jon B. <jo...@gm...> - 2007-09-28 12:03:57
|
Just a guess ... The class may not be in use @ all, you need to initiate + subclass it =20= w/ Interface Builder as well. - Jon On Sep 28, 2007, at 7:56 AM, Micha=EBl Villar wrote: > Hello everybody, > > I'm new on RubyCocoa and i have a little problem. > > First, what i want: > Create an personnalized GUI for NSTableView. > I have subclass it in ProjectList. > The code of my ProjectList class : > > class ProjectList < OSX::NSTableView > > def ProjectList.cellClass > return ProjectCell.oc_class > end > > def initWithFrame(frame) > super_initWithFrame(frame) > return self > end > > def awakeFromNib() > self.setBackgroundColor > (OSX::NSColor.colorWithDeviceRed_green_blue_alpha > (228.0/255.0,237.0/255.0,246.0/255.0,1.0)); > end > end > > I use ProjectCell.oc_class instead of .class because it doesn't work > (error) with it.. i don't know if there is another thing to do? > > The code of ProjectCell : > > class ProjectCell < OSX::NSCell > =09 > def drawInteriorWithFrame_inView(cellFrame,controlView) > OSX::NSLog("tmp5"); > end > =09 > def drawWithFrame_inView(cellFrame,controlView) > OSX::NSLog("tmp4"); > end > > def init > OSX::NSLog("tmp2"); > return self > end > =09 > def awakeFromNib > OSX::NSLog("tmp3"); > end > =09 > def drawRect(aRect) > OSX::NSLog("tmp1"); > end > end > > Nothing is printed to the debug logs.. > > Sorry for my bad english. > > Thanks a lot. > > Micha=EBl Villar > > ----------------------------------------------------------------------=20= > --- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: <mi...@ne...> - 2007-09-28 11:56:31
|
Hello everybody, I'm new on RubyCocoa and i have a little problem. First, what i want: Create an personnalized GUI for NSTableView. I have subclass it in ProjectList. The code of my ProjectList class : class ProjectList < OSX::NSTableView def ProjectList.cellClass return ProjectCell.oc_class end def initWithFrame(frame) super_initWithFrame(frame) return self end def awakeFromNib() self.setBackgroundColor=20 (OSX::NSColor.colorWithDeviceRed_green_blue_alpha=20 (228.0/255.0,237.0/255.0,246.0/255.0,1.0)); end end I use ProjectCell.oc_class instead of .class because it doesn't work =20 (error) with it.. i don't know if there is another thing to do? The code of ProjectCell : class ProjectCell < OSX::NSCell =09 def drawInteriorWithFrame_inView(cellFrame,controlView) OSX::NSLog("tmp5"); end =09 def drawWithFrame_inView(cellFrame,controlView) OSX::NSLog("tmp4"); end def init OSX::NSLog("tmp2"); return self end =09 def awakeFromNib OSX::NSLog("tmp3"); end =09 def drawRect(aRect) OSX::NSLog("tmp1"); end end Nothing is printed to the debug logs.. Sorry for my bad english. Thanks a lot. Micha=EBl Villar |
From: Michael S. <mik...@gm...> - 2007-09-26 15:44:29
|
Great! Worked perfect. Thanks for all your help. On 9/25/07, Eloy Duran <elo...@gm...> wrote: > Yeah, that should do the trick. > > On 9/25/07, Laurent Sansonetti <lsa...@ap...> wrote: > > You could try: > > > > sudo ditto /Users/loser/Desktop/RubyCocoa-0.12.0/template/ > > ProjectBuilder /Developer/Library/Xcode/Project\ Templates > > > > Assuming that /Developer/Library/Xcode/Project\ Templates exists on > > your system. > > > > Laurent > > > > On Sep 25, 2007, at 1:53 AM, Michael Steinfeld wrote: > > > > > I am wondering if I can just copy > > > /Users/loser/Desktop/RubyCocoa-0.12.0/framework > > > > > > to > > > > > > /Developer/Library/Xcode/Project\ Templates/Application/RubyWhatever > > > > > > But I am not sure what the correct files should be one I do that > > > > > > On 9/24/07, Michael Steinfeld <mik...@gm...> wrote: > > >> hmm, I don't know what to install either.. so if you can dig up the > > >> paths that would be helpful. > > >> > > >> On 9/24/07, Eloy Duran <elo...@gm...> wrote: > > >>>> Okay source install seems to went good except this error... > > >>>> > > >>>> Generating BridgeSupport metadata for: CoreGraphics ... > > >>>> bin-0-1945(3641) malloc: *** error for object 0x301d90: incorrect > > >>>> checksum for freed object - object was probably modified after > > >>>> being > > >>>> freed, break at szone_error to debug > > >>>> bin-0-1945(3641) malloc: *** set a breakpoint in szone_error to > > >>>> debug > > >>> > > >>> You can safely ignore these. > > >>> > > >>>> But starting Xcode I still don't see the option to create a new > > >>>> project > Application, CocoaRuby > > >>> > > >>> Hmmm, this is weird. I believe there were others with the same > > >>> problem.... > > >>> You can probably simply copy them over from the source to the > > >>> correct xcode > > >>> template directory, however since I don't have access to a dev > > >>> machine I can't > > >>> lookup the paths for you. > > >>> > > >>> Laurent: Have you got any idea what might cause this? > > >>> > > >>>> thanks for the help... > > >>> > > >>> No problemo :) > > >>> > > >>> Cheers, > > >>> Eloy > > >>> > > >>> ------------------------------------------------------------------------- > > >>> This SF.net email is sponsored by: Microsoft > > >>> Defy all challenges. Microsoft(R) Visual Studio 2005. > > >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > >>> _______________________________________________ > > >>> Rubycocoa-talk mailing list > > >>> Rub...@li... > > >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > >>> > > >> > > >> > > >> -- > > >> Michael Steinfeld > > >> Linux Admin/Developer > > >> AIM: mikesteinfeld > > >> GTALK: mik...@gm... > > >> > > > > > > > > > -- > > > Michael Steinfeld > > > Linux Admin/Developer > > > AIM: mikesteinfeld > > > GTALK: mik...@gm... > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > > 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 2005. > > 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 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > -- Michael Steinfeld Linux Admin/Developer AIM: mikesteinfeld GTALK: mik...@gm... |
From: No S. <gar...@gm...> - 2007-09-25 23:38:53
|
Hi. I'm not seeing the the Ruby templates on a new machine: 1. I bought a MacBook. 2. I downloaded and installed XCode 2.5 preview 8m2540a from developer.apple.com. 3. I downloaded and installed RubyCocoa 0.12. 4. To test the installs, I followed the directions at http://rubycocoa.sourceforge.net/Samples and confirmed that the samples built and ran correctly. But when I run Xcode, there are no templates related to Ruby when I select "New Project". I see that the template folders are present in: Macintosh HD/Library/Application Support/Apple/Developer Tools/Project Templates/Application Is this the correct location? Is there some config setting to tell Xcode to look in that directory? Other ideas? Thanks |
From: Eloy D. <elo...@gm...> - 2007-09-25 07:20:12
|
Yeah, that should do the trick. On 9/25/07, Laurent Sansonetti <lsa...@ap...> wrote: > You could try: > > sudo ditto /Users/loser/Desktop/RubyCocoa-0.12.0/template/ > ProjectBuilder /Developer/Library/Xcode/Project\ Templates > > Assuming that /Developer/Library/Xcode/Project\ Templates exists on > your system. > > Laurent > > On Sep 25, 2007, at 1:53 AM, Michael Steinfeld wrote: > > > I am wondering if I can just copy > > /Users/loser/Desktop/RubyCocoa-0.12.0/framework > > > > to > > > > /Developer/Library/Xcode/Project\ Templates/Application/RubyWhatever > > > > But I am not sure what the correct files should be one I do that > > > > On 9/24/07, Michael Steinfeld <mik...@gm...> wrote: > >> hmm, I don't know what to install either.. so if you can dig up the > >> paths that would be helpful. > >> > >> On 9/24/07, Eloy Duran <elo...@gm...> wrote: > >>>> Okay source install seems to went good except this error... > >>>> > >>>> Generating BridgeSupport metadata for: CoreGraphics ... > >>>> bin-0-1945(3641) malloc: *** error for object 0x301d90: incorrect > >>>> checksum for freed object - object was probably modified after > >>>> being > >>>> freed, break at szone_error to debug > >>>> bin-0-1945(3641) malloc: *** set a breakpoint in szone_error to > >>>> debug > >>> > >>> You can safely ignore these. > >>> > >>>> But starting Xcode I still don't see the option to create a new > >>>> project > Application, CocoaRuby > >>> > >>> Hmmm, this is weird. I believe there were others with the same > >>> problem.... > >>> You can probably simply copy them over from the source to the > >>> correct xcode > >>> template directory, however since I don't have access to a dev > >>> machine I can't > >>> lookup the paths for you. > >>> > >>> Laurent: Have you got any idea what might cause this? > >>> > >>>> thanks for the help... > >>> > >>> No problemo :) > >>> > >>> Cheers, > >>> Eloy > >>> > >>> ------------------------------------------------------------------------- > >>> This SF.net email is sponsored by: Microsoft > >>> Defy all challenges. Microsoft(R) Visual Studio 2005. > >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >>> _______________________________________________ > >>> Rubycocoa-talk mailing list > >>> Rub...@li... > >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > >>> > >> > >> > >> -- > >> Michael Steinfeld > >> Linux Admin/Developer > >> AIM: mikesteinfeld > >> GTALK: mik...@gm... > >> > > > > > > -- > > Michael Steinfeld > > Linux Admin/Developer > > AIM: mikesteinfeld > > GTALK: mik...@gm... > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > 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 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > |
From: Laurent S. <lsa...@ap...> - 2007-09-24 23:57:10
|
You could try: sudo ditto /Users/loser/Desktop/RubyCocoa-0.12.0/template/ ProjectBuilder /Developer/Library/Xcode/Project\ Templates Assuming that /Developer/Library/Xcode/Project\ Templates exists on your system. Laurent On Sep 25, 2007, at 1:53 AM, Michael Steinfeld wrote: > I am wondering if I can just copy > /Users/loser/Desktop/RubyCocoa-0.12.0/framework > > to > > /Developer/Library/Xcode/Project\ Templates/Application/RubyWhatever > > But I am not sure what the correct files should be one I do that > > On 9/24/07, Michael Steinfeld <mik...@gm...> wrote: >> hmm, I don't know what to install either.. so if you can dig up the >> paths that would be helpful. >> >> On 9/24/07, Eloy Duran <elo...@gm...> wrote: >>>> Okay source install seems to went good except this error... >>>> >>>> Generating BridgeSupport metadata for: CoreGraphics ... >>>> bin-0-1945(3641) malloc: *** error for object 0x301d90: incorrect >>>> checksum for freed object - object was probably modified after >>>> being >>>> freed, break at szone_error to debug >>>> bin-0-1945(3641) malloc: *** set a breakpoint in szone_error to >>>> debug >>> >>> You can safely ignore these. >>> >>>> But starting Xcode I still don't see the option to create a new >>>> project > Application, CocoaRuby >>> >>> Hmmm, this is weird. I believe there were others with the same >>> problem.... >>> You can probably simply copy them over from the source to the >>> correct xcode >>> template directory, however since I don't have access to a dev >>> machine I can't >>> lookup the paths for you. >>> >>> Laurent: Have you got any idea what might cause this? >>> >>>> thanks for the help... >>> >>> No problemo :) >>> >>> Cheers, >>> Eloy >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2005. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> Rubycocoa-talk mailing list >>> Rub...@li... >>> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >>> >> >> >> -- >> Michael Steinfeld >> Linux Admin/Developer >> AIM: mikesteinfeld >> GTALK: mik...@gm... >> > > > -- > Michael Steinfeld > Linux Admin/Developer > AIM: mikesteinfeld > GTALK: mik...@gm... > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Michael S. <mik...@gm...> - 2007-09-24 23:53:52
|
I am wondering if I can just copy /Users/loser/Desktop/RubyCocoa-0.12.0/framework to /Developer/Library/Xcode/Project\ Templates/Application/RubyWhatever But I am not sure what the correct files should be one I do that On 9/24/07, Michael Steinfeld <mik...@gm...> wrote: > hmm, I don't know what to install either.. so if you can dig up the > paths that would be helpful. > > On 9/24/07, Eloy Duran <elo...@gm...> wrote: > > > Okay source install seems to went good except this error... > > > > > > Generating BridgeSupport metadata for: CoreGraphics ... > > > bin-0-1945(3641) malloc: *** error for object 0x301d90: incorrect > > > checksum for freed object - object was probably modified after being > > > freed, break at szone_error to debug > > > bin-0-1945(3641) malloc: *** set a breakpoint in szone_error to debug > > > > You can safely ignore these. > > > > > But starting Xcode I still don't see the option to create a new > > > project > Application, CocoaRuby > > > > Hmmm, this is weird. I believe there were others with the same problem.... > > You can probably simply copy them over from the source to the correct xcode > > template directory, however since I don't have access to a dev machine I can't > > lookup the paths for you. > > > > Laurent: Have you got any idea what might cause this? > > > > > thanks for the help... > > > > No problemo :) > > > > Cheers, > > Eloy > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Rubycocoa-talk mailing list > > Rub...@li... > > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > > > > -- > Michael Steinfeld > Linux Admin/Developer > AIM: mikesteinfeld > GTALK: mik...@gm... > -- Michael Steinfeld Linux Admin/Developer AIM: mikesteinfeld GTALK: mik...@gm... |
From: Michael S. <mik...@gm...> - 2007-09-24 23:28:53
|
hmm, I don't know what to install either.. so if you can dig up the paths that would be helpful. On 9/24/07, Eloy Duran <elo...@gm...> wrote: > > Okay source install seems to went good except this error... > > > > Generating BridgeSupport metadata for: CoreGraphics ... > > bin-0-1945(3641) malloc: *** error for object 0x301d90: incorrect > > checksum for freed object - object was probably modified after being > > freed, break at szone_error to debug > > bin-0-1945(3641) malloc: *** set a breakpoint in szone_error to debug > > You can safely ignore these. > > > But starting Xcode I still don't see the option to create a new > > project > Application, CocoaRuby > > Hmmm, this is weird. I believe there were others with the same problem.... > You can probably simply copy them over from the source to the correct xcode > template directory, however since I don't have access to a dev machine I can't > lookup the paths for you. > > Laurent: Have you got any idea what might cause this? > > > thanks for the help... > > No problemo :) > > Cheers, > Eloy > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > -- Michael Steinfeld Linux Admin/Developer AIM: mikesteinfeld GTALK: mik...@gm... |
From: Michael S. <mik...@gm...> - 2007-09-24 23:23:43
|
here is config-save rubycocoa-framework-version=A bin-dir=$install-prefix/bin site-ruby=$install-prefix/lib/ruby/site_ruby/1.8 prefix=/opt/local build-universal=no ri-dir=/opt/local/share/ri/1.8/site libruby-path=/opt/local/lib/libruby.1.8.6.dylib build-as-embeddable=yes rubycocoa-version-short=0.12.0 examples=/Developer/Examples ruby-path=/opt/local/bin/ruby make-prog=make ruby-header-dir=/opt/local/lib/ruby/1.8/i686-darwin8.10.1 install-prefix=$prefix rb-dir=$site-ruby macosx-deployment-target=10.4 without-ext=no ruby-prog=/opt/local/bin/ruby rubycocoa-release-date=2007-07-19 rubycocoa-version=0.12.0 gen-bridge-support=yes documentation=/Developer/Documentation std-ruby=$install-prefix/lib/ruby/1.8 rubycocoa-svn-revision=2001 install-root= frameworks=/Library/Frameworks data-dir=$install-prefix/share so-dir=$install-prefix/lib/ruby/site_ruby/1.8/i686-darwin8.10.1 the config line I used was the one on the getting started project page ruby install.rb config that's all. On 9/24/07, Laurent Sansonetti <lsa...@ap...> wrote: > Hi Michael, > > From the install log, it seems that the templates were not installed. > Normally they should go in "/Library/Application Support/Apple/ > Developer Tools". > > This is weird, according to pre-install.rb the templates should be > installed unless the config 'xcode-extras' variable as nil. Could you > look at file config.save file and see the value of 'xcode-extras'? > Also, do you remember the config line that you used? > > Laurent > > On Sep 24, 2007, at 5:39 PM, Michael Steinfeld wrote: > > Source install was a success > > > > mike@Tulku :> sudo ruby install.rb install > > install.rb: entering install phase... > > rm -rf '/tmp/rubycocoa_backup/sample' > > mkdir -p '/tmp/rubycocoa_backup' > > mv '/Developer/Examples/RubyCocoa' '/tmp/rubycocoa_backup/sample' > > mkdir -p '/Developer/Examples' > > cp -R 'sample' '/Developer/Examples/RubyCocoa' > > chmod -R g+w '/Developer/Examples/RubyCocoa' > > rm -rf '/tmp/rubycocoa_backup/doc' > > mkdir -p '/tmp/rubycocoa_backup' > > mv '/Developer/Documentation/RubyCocoa' '/tmp/rubycocoa_backup/doc' > > mkdir -p '/Developer/Documentation' > > cp -R 'doc' '/Developer/Documentation/RubyCocoa' > > ---> framework > > rm -rf '/tmp/rubycocoa_backup/RubyCocoa.framework' > > mkdir -p '/tmp/rubycocoa_backup' > > mv '/Library/Frameworks/RubyCocoa.framework' '/tmp/rubycocoa_backup/' > > mkdir -p '/Library/Frameworks' > > cp -R 'build/Default/RubyCocoa.framework' > > '/Library/Frameworks/RubyCocoa.framework' > > <--- framework > > ---> lib > > mkdir -p /opt/local/lib/ruby/site_ruby/1.8/ > > ---> lib/osx > > mkdir -p /opt/local/lib/ruby/site_ruby/1.8/osx > > install active_record.rb /opt/local/lib/ruby/site_ruby/1.8/osx > > install addressbook.rb /opt/local/lib/ruby/site_ruby/1.8/osx > > install appkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx > > install cocoa.rb /opt/local/lib/ruby/site_ruby/1.8/osx > > install coredata.rb /opt/local/lib/ruby/site_ruby/1.8/osx > > install foundation.rb /opt/local/lib/ruby/site_ruby/1.8/osx > > install qtkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx > > install webkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx > > <--- lib/osx > > <--- lib > > ---> ext > > ---> ext/rubycocoa > > mkdir -p /opt/local/lib/ruby/site_ruby/1.8/i686-darwin8.10.1/. > > install rubycocoa.bundle /opt/local/lib/ruby/site_ruby/1.8/i686- > > darwin8.10.1/. > > <--- ext/rubycocoa > > <--- ext > > install.rb: install done. > > > > now getting XCode to see it is another story.. is there a way manually > > to tell XCode where CocoaRuby is? > > > > > > > > On 9/24/07, Eloy Duran <elo...@gm...> wrote: > >>> Also I have some PATH confusion because typically I use /opt/local > >>> for > >>> all ruby/rails dev > >>> Here is my existing PATH > >>> > >>> /Library/Frameworks/Python.framework/Versions/Current/bin:/usr/ > >>> local/mysql/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/ > >>> bin:/sbin:/usr/bin:/usr/sbin > >>> > >> > >> - snip - > >> > >>> If my path is set to above, should installing from source use > >>> /opt/local? Or do I have to explicitly set the path? > >> > >> If you have a ruby in /opt/local/bin that should be correct and that > >> ruby should be used. > >> You can always try the following to see which one is first in your > >> path: $ which ruby > >> > >> I'll await the source installation log. > >> > >> Cheers, > >> Eloy > >> > >> ------------------------------------------------------------------------- > >> This SF.net email is sponsored by: Microsoft > >> Defy all challenges. Microsoft(R) Visual Studio 2005. > >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> _______________________________________________ > >> Rubycocoa-talk mailing list > >> Rub...@li... > >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > >> > > > > > > -- > > Michael Steinfeld > > Linux Admin/Developer > > AIM: mikesteinfeld > > GTALK: mik...@gm... > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > 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 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > -- Michael Steinfeld Linux Admin/Developer AIM: mikesteinfeld GTALK: mik...@gm... |
From: Laurent S. <lsa...@ap...> - 2007-09-24 19:36:12
|
Hi, On Sep 24, 2007, at 9:14 PM, grimmwerks wrote: > Hey - curious; will there be any upcoming apple-dev classes regarding > Ruby as a core language in leopard? Sorry, what do you mean? Apple's classes (Cocoa, etc...) have of course been updated in Leopard, new frameworks have also been introduced, and RubyCocoa was updated to support both. > Will the code that we're working on now with rubycocoa have minimal > migration to 10.5? There should theoretically be no migration problem, compatibility with your code should be preserved in 10.5. Some Cocoa classes have been deprecated in 10.5 though, but they are anyway not currently supported. Laurent |
From: grimmwerks <gr...@gr...> - 2007-09-24 19:14:35
|
Hey - curious; will there be any upcoming apple-dev classes regarding Ruby as a core language in leopard? Will the code that we're working on now with rubycocoa have minimal migration to 10.5? Thanks |
From: James S. <jj...@pp...> - 2007-09-24 16:55:05
|
Hi Michael, What version of Xcode are you using? I too had problems when I tried to install Rubycocoa on OS X 10.4 with its version 2.0 tools. And when I downloaded the OS X 10.4.10 software update, the problems became worse. First I found that when re-installing Rubycocoa there was a problem of files not being able to overwrite the previously installed files; and second, the Xcode project -> new menu didn't display the Cocoa-Ruby applications as described in the readings. When I looked at the install log that Laurent suggested I try looking at, I found that everything seem to load correctly and that the only bug was that the install was unable to overwrite some kind of /Library/Receipts/RubyCocoa-...pkg file -- which made the install crash. When I got rid of the older, or newer?, pkg file the install gave me the message: 'installed successfully.' Only Xcode still did not have the correct framework for the Rubycocoa projects. At this point I almost gave up; but then decided to start from scratch. Since I had made many changes, upgrades, and loaded many 3rd party apps, I knew my system was pretty cluttered, if not possibly corrupted. I reloaded the base OS X system from the original CD but not the CD's Xcode 2.0 tools since I knew there was a newer Xcode version available. (This new version is downloadable, and free, from The Apple Developer Connection, http://connect.apple.com/ This is Xcode version 2.4.1) Before installing Xcode I did a software update on my OS X 10.4 to version upgrade 10.4.10; downloaded the correct Rubycocoa dmg, and then installed Xcode 2.4.1. After two days of fooling about with the problems of the first installs, this starting from scratch to finish, took around four or five hours and everything worked as described. Was it worth it? Yes, I am also new to Xcode and Rubycocoa, and I'm enthusiastic about what I'm learning. Ruby and Objective-C are a strange mix and the concepts here are radical within the Xcode IDE. This is truly something new for me. I like it. Hope these comments are helpful. James On 23-Sep-07, at 9:06 PM, Michael Steinfeld wrote: > hi > > I tried installing from the dmg first, no luck.. ... > Michael Steinfeld > Linux Admin/Developer > AIM: mikesteinfeld > GTALK: mik...@gm... > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Laurent S. <lsa...@ap...> - 2007-09-24 16:28:33
|
Hi Michael, From the install log, it seems that the templates were not installed. Normally they should go in "/Library/Application Support/Apple/ Developer Tools". This is weird, according to pre-install.rb the templates should be installed unless the config 'xcode-extras' variable as nil. Could you look at file config.save file and see the value of 'xcode-extras'? Also, do you remember the config line that you used? Laurent On Sep 24, 2007, at 5:39 PM, Michael Steinfeld wrote: > Source install was a success > > mike@Tulku :> sudo ruby install.rb install > install.rb: entering install phase... > rm -rf '/tmp/rubycocoa_backup/sample' > mkdir -p '/tmp/rubycocoa_backup' > mv '/Developer/Examples/RubyCocoa' '/tmp/rubycocoa_backup/sample' > mkdir -p '/Developer/Examples' > cp -R 'sample' '/Developer/Examples/RubyCocoa' > chmod -R g+w '/Developer/Examples/RubyCocoa' > rm -rf '/tmp/rubycocoa_backup/doc' > mkdir -p '/tmp/rubycocoa_backup' > mv '/Developer/Documentation/RubyCocoa' '/tmp/rubycocoa_backup/doc' > mkdir -p '/Developer/Documentation' > cp -R 'doc' '/Developer/Documentation/RubyCocoa' > ---> framework > rm -rf '/tmp/rubycocoa_backup/RubyCocoa.framework' > mkdir -p '/tmp/rubycocoa_backup' > mv '/Library/Frameworks/RubyCocoa.framework' '/tmp/rubycocoa_backup/' > mkdir -p '/Library/Frameworks' > cp -R 'build/Default/RubyCocoa.framework' > '/Library/Frameworks/RubyCocoa.framework' > <--- framework > ---> lib > mkdir -p /opt/local/lib/ruby/site_ruby/1.8/ > ---> lib/osx > mkdir -p /opt/local/lib/ruby/site_ruby/1.8/osx > install active_record.rb /opt/local/lib/ruby/site_ruby/1.8/osx > install addressbook.rb /opt/local/lib/ruby/site_ruby/1.8/osx > install appkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx > install cocoa.rb /opt/local/lib/ruby/site_ruby/1.8/osx > install coredata.rb /opt/local/lib/ruby/site_ruby/1.8/osx > install foundation.rb /opt/local/lib/ruby/site_ruby/1.8/osx > install qtkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx > install webkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx > <--- lib/osx > <--- lib > ---> ext > ---> ext/rubycocoa > mkdir -p /opt/local/lib/ruby/site_ruby/1.8/i686-darwin8.10.1/. > install rubycocoa.bundle /opt/local/lib/ruby/site_ruby/1.8/i686- > darwin8.10.1/. > <--- ext/rubycocoa > <--- ext > install.rb: install done. > > now getting XCode to see it is another story.. is there a way manually > to tell XCode where CocoaRuby is? > > > > On 9/24/07, Eloy Duran <elo...@gm...> wrote: >>> Also I have some PATH confusion because typically I use /opt/local >>> for >>> all ruby/rails dev >>> Here is my existing PATH >>> >>> /Library/Frameworks/Python.framework/Versions/Current/bin:/usr/ >>> local/mysql/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/ >>> bin:/sbin:/usr/bin:/usr/sbin >>> >> >> - snip - >> >>> If my path is set to above, should installing from source use >>> /opt/local? Or do I have to explicitly set the path? >> >> If you have a ruby in /opt/local/bin that should be correct and that >> ruby should be used. >> You can always try the following to see which one is first in your >> path: $ which ruby >> >> I'll await the source installation log. >> >> Cheers, >> Eloy >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2005. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Rubycocoa-talk mailing list >> Rub...@li... >> https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk >> > > > -- > Michael Steinfeld > Linux Admin/Developer > AIM: mikesteinfeld > GTALK: mik...@gm... > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk |
From: Michael S. <mik...@gm...> - 2007-09-24 15:56:18
|
Hi Source install was a success mike@Tulku :> sudo ruby install.rb install install.rb: entering install phase... rm -rf '/tmp/rubycocoa_backup/sample' mkdir -p '/tmp/rubycocoa_backup' mv '/Developer/Examples/RubyCocoa' '/tmp/rubycocoa_backup/sample' mkdir -p '/Developer/Examples' cp -R 'sample' '/Developer/Examples/RubyCocoa' chmod -R g+w '/Developer/Examples/RubyCocoa' rm -rf '/tmp/rubycocoa_backup/doc' mkdir -p '/tmp/rubycocoa_backup' mv '/Developer/Documentation/RubyCocoa' '/tmp/rubycocoa_backup/doc' mkdir -p '/Developer/Documentation' cp -R 'doc' '/Developer/Documentation/RubyCocoa' ---> framework rm -rf '/tmp/rubycocoa_backup/RubyCocoa.framework' mkdir -p '/tmp/rubycocoa_backup' mv '/Library/Frameworks/RubyCocoa.framework' '/tmp/rubycocoa_backup/' mkdir -p '/Library/Frameworks' cp -R 'build/Default/RubyCocoa.framework' '/Library/Frameworks/RubyCocoa.framework' <--- framework ---> lib mkdir -p /opt/local/lib/ruby/site_ruby/1.8/ ---> lib/osx mkdir -p /opt/local/lib/ruby/site_ruby/1.8/osx install active_record.rb /opt/local/lib/ruby/site_ruby/1.8/osx install addressbook.rb /opt/local/lib/ruby/site_ruby/1.8/osx install appkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx install cocoa.rb /opt/local/lib/ruby/site_ruby/1.8/osx install coredata.rb /opt/local/lib/ruby/site_ruby/1.8/osx install foundation.rb /opt/local/lib/ruby/site_ruby/1.8/osx install qtkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx install webkit.rb /opt/local/lib/ruby/site_ruby/1.8/osx <--- lib/osx <--- lib ---> ext ---> ext/rubycocoa mkdir -p /opt/local/lib/ruby/site_ruby/1.8/i686-darwin8.10.1/. install rubycocoa.bundle /opt/local/lib/ruby/site_ruby/1.8/i686-darwin8.10.1/. <--- ext/rubycocoa <--- ext install.rb: install done. now getting XCode to see it is another story.. is there a way manually to tell XCode where CocoaRuby is? On 9/24/07, Eloy Duran <elo...@gm...> wrote: > > Also I have some PATH confusion because typically I use /opt/local for > > all ruby/rails dev > > Here is my existing PATH > > > > /Library/Frameworks/Python.framework/Versions/Current/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin > > > > - snip - > > > If my path is set to above, should installing from source use > > /opt/local? Or do I have to explicitly set the path? > > If you have a ruby in /opt/local/bin that should be correct and that > ruby should be used. > You can always try the following to see which one is first in your > path: $ which ruby > > I'll await the source installation log. > > Cheers, > Eloy > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > -- Michael Steinfeld Linux Admin/Developer AIM: mikesteinfeld GTALK: mik...@gm... |
From: Eloy D. <elo...@gm...> - 2007-09-24 15:51:53
|
> Okay source install seems to went good except this error... > > Generating BridgeSupport metadata for: CoreGraphics ... > bin-0-1945(3641) malloc: *** error for object 0x301d90: incorrect > checksum for freed object - object was probably modified after being > freed, break at szone_error to debug > bin-0-1945(3641) malloc: *** set a breakpoint in szone_error to debug You can safely ignore these. > But starting Xcode I still don't see the option to create a new > project > Application, CocoaRuby Hmmm, this is weird. I believe there were others with the same problem.... You can probably simply copy them over from the source to the correct xcode template directory, however since I don't have access to a dev machine I can't lookup the paths for you. Laurent: Have you got any idea what might cause this? > thanks for the help... No problemo :) Cheers, Eloy |
From: Eloy D. <elo...@gm...> - 2007-09-24 15:16:32
|
> Also I have some PATH confusion because typically I use /opt/local for > all ruby/rails dev > Here is my existing PATH > > /Library/Frameworks/Python.framework/Versions/Current/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin > - snip - > If my path is set to above, should installing from source use > /opt/local? Or do I have to explicitly set the path? If you have a ruby in /opt/local/bin that should be correct and that ruby should be used. You can always try the following to see which one is first in your path: $ which ruby I'll await the source installation log. Cheers, Eloy |
From: Michael S. <mik...@gm...> - 2007-09-24 15:13:51
|
Okay source install seems to went good except this error... Generating BridgeSupport metadata for: CoreGraphics ... bin-0-1945(3641) malloc: *** error for object 0x301d90: incorrect checksum for freed object - object was probably modified after being freed, break at szone_error to debug bin-0-1945(3641) malloc: *** set a breakpoint in szone_error to debug But starting Xcode I still don't see the option to create a new project > Application, CocoaRuby thanks for the help... On 9/24/07, Michael Steinfeld <mik...@gm...> wrote: > On 9/24/07, Eloy Duran <elo...@gm...> wrote: > > Hi Michael, > > > > Did you install multiple times, or already had an older version installed? > > Because it looks to me that that is wat the postflight script is > > complainging about, > > which should not happen anyways.... > > Yes I tried installing first from the dmg, since it didn't work the > first time I tried source install, when that didn't work I opted for > macports > > Also I have some PATH confusion because typically I use /opt/local for > all ruby/rails dev > Here is my existing PATH > > /Library/Frameworks/Python.framework/Versions/Current/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin > > Is there a way that I can just remove everything and start over? I > tried removing the > > > > You said you tried installing from source, but that didn't work either? > > Could you maybe send a log about this? > > sure, I am actually attempting to install from source again .... I'll > follow up with a reply shortly > > If my path is set to above, should installing from source use > /opt/local? Or do I have to explicitly set the path? > > > > > So did you finally install RubyCocoa through MacPorts? > > Because I wouldn't use that version, it's horribly old... :/ > > > > So please send a log from the source installation. > > > > Cheers, > > Eloy > > > > On 9/24/07, Michael Steinfeld <mik...@gm...> wrote: > > > hi > > > > > > I tried installing from the dmg first, no luck.. here is the log > > > > > > Sep 23 20:56:54 Tulku : run postflight script for RubyCocoa > > > Sep 23 20:56:54 Tulku : postflight[13704]: ########################## > > > Sep 23 20:56:54 Tulku : postflight[13704]: postflight process failed! > > > Sep 23 20:56:54 Tulku : postflight[13704]: ########################## > > > Sep 23 20:56:54 Tulku : postflight[13704]: Error: #<Errno::EEXIST: > > > File exists - /usr/lib/libruby-with-thread-hooks.1.dylib or > > > /usr/lib/libruby.1.dylib> > > > Sep 23 20:56:54 Tulku : postflight[13704]: > > > Sep 23 20:56:54 Tulku : postflight[13704]: old extlib exists. > > > remove:/usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle > > > Sep 23 20:56:54 Tulku : postflight[13704]: copy > > > /usr/lib/ruby/site_ruby/1.8/universal-darwin8.0/rubycocoa.bundle to > > > /usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle > > > Sep 23 20:56:54 Tulku : postflight[13704]: Overwriting > > > /usr/lib/libruby.1.dylib with > > > /usr/lib/libruby-with-thread-hooks.1.dylib > > > Sep 23 20:56:54 Tulku : postflight[13704]: > > > Sep 23 20:56:54 Tulku : Install failed: The following install step > > > failed: run postflight script for RubyCocoa > > > Sep 23 20:56:54 Tulku : Private/Total = (8.6MB, 67.1MB), Heap/Total = > > > (2.1MB, 16.7MB), Regions(malloc, private) = (29, 38) > > > Sep 23 20:56:54 Tulku : It took 17.308603 seconds to unsuccessfully > > > install "RubyCocoa" (1 pkg(s)) > > > Sep 23 20:56:54 Tulku : It took 1.003704 seconds to > > > Configuring volume "Tulku" (dm prepare*disk) > > > Sep 23 20:56:54 Tulku : It took 16.022288 seconds to Install > > > RubyCocoa: 22 elements > > > Sep 23 20:56:54 Tulku : It took 16.020269 seconds to > > > unsuccessfully Install package RubyCocoa > > > Sep 23 20:56:54 Tulku : It took 1.212703 > > > seconds to Build install plan (& redirected paths) > > > Sep 23 20:56:54 Tulku : It took 0.027071 > > > seconds to Evaluating versions of bundles > > > Sep 23 20:56:54 Tulku : It took 0.391311 > > > seconds to Determing obsolete files > > > Sep 23 20:56:54 Tulku : It took 0.171688 > > > seconds to Assembling temporary receipt > > > Sep 23 20:56:54 Tulku : It took 0.472183 > > > seconds to Collect path info (ATS, Sec Equiv, Kext, Pref Panes) > > > Sep 23 20:56:54 Tulku : It took 13.657333 > > > seconds to Write files > > > Sep 23 20:56:54 Tulku : It took 0.087158 > > > seconds to Assembling receipt > > > Sep 23 20:56:54 Tulku : It took 0.279921 seconds to run > > > postflight script for RubyCocoa > > > Sep 23 20:56:54 Tulku : Sep 23 20:56:54 Tulku : Summary Information > > > > > > > > > I also tried from source still no luck... > > > > > > now, I jsut installed from macports and if I open irb and require 'rubycocoa' > > > > > > >> require 'rubycocoa' > > > => true > > > > > > so okay that worked, > > > > > > Now when I open xcode, and go to create a new project there is no > > > reference to ruby... > > > > > > Any suggestions? > > > > > > (P.S I am new to Xcode) > > > > > > thanks! > > > -- > > > Michael Steinfeld > > > Linux Admin/Developer > > > AIM: mikesteinfeld > > > GTALK: mik...@gm... > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > > 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 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Rubycocoa-talk mailing list > > Rub...@li... > > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > > > > > -- > Michael Steinfeld > Linux Admin/Developer > AIM: mikesteinfeld > GTALK: mik...@gm... > -- Michael Steinfeld Linux Admin/Developer AIM: mikesteinfeld GTALK: mik...@gm... |
From: Michael S. <mik...@gm...> - 2007-09-24 15:08:33
|
On 9/24/07, Eloy Duran <elo...@gm...> wrote: > Hi Michael, > > Did you install multiple times, or already had an older version installed? > Because it looks to me that that is wat the postflight script is > complainging about, > which should not happen anyways.... Yes I tried installing first from the dmg, since it didn't work the first time I tried source install, when that didn't work I opted for macports Also I have some PATH confusion because typically I use /opt/local for all ruby/rails dev Here is my existing PATH /Library/Frameworks/Python.framework/Versions/Current/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin Is there a way that I can just remove everything and start over? I tried removing the > > You said you tried installing from source, but that didn't work either? > Could you maybe send a log about this? sure, I am actually attempting to install from source again .... I'll follow up with a reply shortly If my path is set to above, should installing from source use /opt/local? Or do I have to explicitly set the path? > > So did you finally install RubyCocoa through MacPorts? > Because I wouldn't use that version, it's horribly old... :/ > > So please send a log from the source installation. > > Cheers, > Eloy > > On 9/24/07, Michael Steinfeld <mik...@gm...> wrote: > > hi > > > > I tried installing from the dmg first, no luck.. here is the log > > > > Sep 23 20:56:54 Tulku : run postflight script for RubyCocoa > > Sep 23 20:56:54 Tulku : postflight[13704]: ########################## > > Sep 23 20:56:54 Tulku : postflight[13704]: postflight process failed! > > Sep 23 20:56:54 Tulku : postflight[13704]: ########################## > > Sep 23 20:56:54 Tulku : postflight[13704]: Error: #<Errno::EEXIST: > > File exists - /usr/lib/libruby-with-thread-hooks.1.dylib or > > /usr/lib/libruby.1.dylib> > > Sep 23 20:56:54 Tulku : postflight[13704]: > > Sep 23 20:56:54 Tulku : postflight[13704]: old extlib exists. > > remove:/usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle > > Sep 23 20:56:54 Tulku : postflight[13704]: copy > > /usr/lib/ruby/site_ruby/1.8/universal-darwin8.0/rubycocoa.bundle to > > /usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle > > Sep 23 20:56:54 Tulku : postflight[13704]: Overwriting > > /usr/lib/libruby.1.dylib with > > /usr/lib/libruby-with-thread-hooks.1.dylib > > Sep 23 20:56:54 Tulku : postflight[13704]: > > Sep 23 20:56:54 Tulku : Install failed: The following install step > > failed: run postflight script for RubyCocoa > > Sep 23 20:56:54 Tulku : Private/Total = (8.6MB, 67.1MB), Heap/Total = > > (2.1MB, 16.7MB), Regions(malloc, private) = (29, 38) > > Sep 23 20:56:54 Tulku : It took 17.308603 seconds to unsuccessfully > > install "RubyCocoa" (1 pkg(s)) > > Sep 23 20:56:54 Tulku : It took 1.003704 seconds to > > Configuring volume "Tulku" (dm prepare*disk) > > Sep 23 20:56:54 Tulku : It took 16.022288 seconds to Install > > RubyCocoa: 22 elements > > Sep 23 20:56:54 Tulku : It took 16.020269 seconds to > > unsuccessfully Install package RubyCocoa > > Sep 23 20:56:54 Tulku : It took 1.212703 > > seconds to Build install plan (& redirected paths) > > Sep 23 20:56:54 Tulku : It took 0.027071 > > seconds to Evaluating versions of bundles > > Sep 23 20:56:54 Tulku : It took 0.391311 > > seconds to Determing obsolete files > > Sep 23 20:56:54 Tulku : It took 0.171688 > > seconds to Assembling temporary receipt > > Sep 23 20:56:54 Tulku : It took 0.472183 > > seconds to Collect path info (ATS, Sec Equiv, Kext, Pref Panes) > > Sep 23 20:56:54 Tulku : It took 13.657333 > > seconds to Write files > > Sep 23 20:56:54 Tulku : It took 0.087158 > > seconds to Assembling receipt > > Sep 23 20:56:54 Tulku : It took 0.279921 seconds to run > > postflight script for RubyCocoa > > Sep 23 20:56:54 Tulku : Sep 23 20:56:54 Tulku : Summary Information > > > > > > I also tried from source still no luck... > > > > now, I jsut installed from macports and if I open irb and require 'rubycocoa' > > > > >> require 'rubycocoa' > > => true > > > > so okay that worked, > > > > Now when I open xcode, and go to create a new project there is no > > reference to ruby... > > > > Any suggestions? > > > > (P.S I am new to Xcode) > > > > thanks! > > -- > > Michael Steinfeld > > Linux Admin/Developer > > AIM: mikesteinfeld > > GTALK: mik...@gm... > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > 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 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > -- Michael Steinfeld Linux Admin/Developer AIM: mikesteinfeld GTALK: mik...@gm... |
From: Eloy D. <elo...@gm...> - 2007-09-24 08:41:26
|
Hi Michael, Did you install multiple times, or already had an older version installed? Because it looks to me that that is wat the postflight script is complainging about, which should not happen anyways.... You said you tried installing from source, but that didn't work either? Could you maybe send a log about this? So did you finally install RubyCocoa through MacPorts? Because I wouldn't use that version, it's horribly old... :/ So please send a log from the source installation. Cheers, Eloy On 9/24/07, Michael Steinfeld <mik...@gm...> wrote: > hi > > I tried installing from the dmg first, no luck.. here is the log > > Sep 23 20:56:54 Tulku : run postflight script for RubyCocoa > Sep 23 20:56:54 Tulku : postflight[13704]: ########################## > Sep 23 20:56:54 Tulku : postflight[13704]: postflight process failed! > Sep 23 20:56:54 Tulku : postflight[13704]: ########################## > Sep 23 20:56:54 Tulku : postflight[13704]: Error: #<Errno::EEXIST: > File exists - /usr/lib/libruby-with-thread-hooks.1.dylib or > /usr/lib/libruby.1.dylib> > Sep 23 20:56:54 Tulku : postflight[13704]: > Sep 23 20:56:54 Tulku : postflight[13704]: old extlib exists. > remove:/usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle > Sep 23 20:56:54 Tulku : postflight[13704]: copy > /usr/lib/ruby/site_ruby/1.8/universal-darwin8.0/rubycocoa.bundle to > /usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle > Sep 23 20:56:54 Tulku : postflight[13704]: Overwriting > /usr/lib/libruby.1.dylib with > /usr/lib/libruby-with-thread-hooks.1.dylib > Sep 23 20:56:54 Tulku : postflight[13704]: > Sep 23 20:56:54 Tulku : Install failed: The following install step > failed: run postflight script for RubyCocoa > Sep 23 20:56:54 Tulku : Private/Total = (8.6MB, 67.1MB), Heap/Total = > (2.1MB, 16.7MB), Regions(malloc, private) = (29, 38) > Sep 23 20:56:54 Tulku : It took 17.308603 seconds to unsuccessfully > install "RubyCocoa" (1 pkg(s)) > Sep 23 20:56:54 Tulku : It took 1.003704 seconds to > Configuring volume "Tulku" (dm prepare*disk) > Sep 23 20:56:54 Tulku : It took 16.022288 seconds to Install > RubyCocoa: 22 elements > Sep 23 20:56:54 Tulku : It took 16.020269 seconds to > unsuccessfully Install package RubyCocoa > Sep 23 20:56:54 Tulku : It took 1.212703 > seconds to Build install plan (& redirected paths) > Sep 23 20:56:54 Tulku : It took 0.027071 > seconds to Evaluating versions of bundles > Sep 23 20:56:54 Tulku : It took 0.391311 > seconds to Determing obsolete files > Sep 23 20:56:54 Tulku : It took 0.171688 > seconds to Assembling temporary receipt > Sep 23 20:56:54 Tulku : It took 0.472183 > seconds to Collect path info (ATS, Sec Equiv, Kext, Pref Panes) > Sep 23 20:56:54 Tulku : It took 13.657333 > seconds to Write files > Sep 23 20:56:54 Tulku : It took 0.087158 > seconds to Assembling receipt > Sep 23 20:56:54 Tulku : It took 0.279921 seconds to run > postflight script for RubyCocoa > Sep 23 20:56:54 Tulku : Sep 23 20:56:54 Tulku : Summary Information > > > I also tried from source still no luck... > > now, I jsut installed from macports and if I open irb and require 'rubycocoa' > > >> require 'rubycocoa' > => true > > so okay that worked, > > Now when I open xcode, and go to create a new project there is no > reference to ruby... > > Any suggestions? > > (P.S I am new to Xcode) > > thanks! > -- > Michael Steinfeld > Linux Admin/Developer > AIM: mikesteinfeld > GTALK: mik...@gm... > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > |
From: Ferhat A. <fer...@ya...> - 2007-09-24 07:39:16
|
if you prefer to use /opt/local/bin/ruby then you have to add this to your = path before /usr/bin/ruby.=0A=0Aexport PATH=3D/opt/local/bin:$PATH=0A=0Aan= d then start xcode.=0A=0AAlternatively you can try to remove the bundle /us= r//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle and try to rei= nstall rubycocoa.=0A=0A*Ferhat=0A=0A----- Original Message ----=0AFrom: Mic= hael Steinfeld <mik...@gm...>=0ATo: rub...@li...urcefor= ge.net=0ASent: Monday, September 24, 2007 3:06:11 AM=0ASubject: [Rubycocoa-= talk] Install fails and I am confused=0A=0Ahi=0A=0AI tried installing from = the dmg first, no luck.. here is the log=0A=0ASep 23 20:56:54 Tulku : run p= ostflight script for RubyCocoa=0ASep 23 20:56:54 Tulku : postflight[13704]:= ##########################=0ASep 23 20:56:54 Tulku : postflight[13704]: po= stflight process failed!=0ASep 23 20:56:54 Tulku : postflight[13704]: #####= #####################=0ASep 23 20:56:54 Tulku : postflight[13704]: Error: #= <Errno::EEXIST:=0AFile exists - /usr/lib/libruby-with-thread-hooks.1.dylib = or=0A/usr/lib/libruby.1.dylib>=0ASep 23 20:56:54 Tulku : postflight[13704]:= =0ASep 23 20:56:54 Tulku : postflight[13704]: old extlib exists.=0Aremove:/= usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle=0ASep 23 20:= 56:54 Tulku : postflight[13704]: copy=0A/usr/lib/ruby/site_ruby/1.8/univers= al-darwin8.0/rubycocoa.bundle to=0A/usr//lib/ruby/site_ruby/1.8/i686-darwin= 8.10.1/rubycocoa.bundle=0ASep 23 20:56:54 Tulku : postflight[13704]: Overwr= iting=0A/usr/lib/libruby.1.dylib with=0A/usr/lib/libruby-with-thread-hooks.= 1.dylib=0ASep 23 20:56:54 Tulku : postflight[13704]:=0ASep 23 20:56:54 Tulk= u : Install failed: The following install step=0Afailed: run postflight scr= ipt for RubyCocoa=0ASep 23 20:56:54 Tulku : Private/Total =3D (8.6MB, 67.1M= B), Heap/Total =3D=0A(2.1MB, 16.7MB), Regions(malloc, private) =3D (29, 3= 8)=0ASep 23 20:56:54 Tulku : It took 17.308603 seconds to unsuccessfully=0A= install "RubyCocoa" (1 pkg(s))=0ASep 23 20:56:54 Tulku : It took 1.= 003704 seconds to=0AConfiguring volume "Tulku" (dm prepare*disk)=0ASep 23 2= 0:56:54 Tulku : It took 16.022288 seconds to Install=0ARubyCocoa: 2= 2 elements=0ASep 23 20:56:54 Tulku : It took 16.020269 seco= nds to=0Aunsuccessfully Install package RubyCocoa=0ASep 23 20:56:54 Tulku := It took 1.212703=0Aseconds to Build install plan (= & redirected paths)=0ASep 23 20:56:54 Tulku : It to= ok 0.027071=0Aseconds to Evaluating versions of bundles=0ASep 23 20:56:54 T= ulku : It took 0.391311=0Aseconds to Determing obso= lete files=0ASep 23 20:56:54 Tulku : It took 0.1716= 88=0Aseconds to Assembling temporary receipt=0ASep 23 20:56:54 Tulku : = It took 0.472183=0Aseconds to Collect path info (ATS, S= ec Equiv, Kext, Pref Panes)=0ASep 23 20:56:54 Tulku : = It took 13.657333=0Aseconds to Write files=0ASep 23 20:56:54 Tulku : = It took 0.087158=0Aseconds to Assembling receipt=0ASep= 23 20:56:54 Tulku : It took 0.279921 seconds to run=0Apostflight s= cript for RubyCocoa=0ASep 23 20:56:54 Tulku : Sep 23 20:56:54 Tulku : Summa= ry Information=0A=0A=0AI also tried from source still no luck...=0A=0Anow, = I jsut installed from macports and if I open irb and require 'rubycocoa'=0A= =0A>> require 'rubycocoa'=0A=3D> true=0A=0Aso okay that worked,=0A=0ANow wh= en I open xcode, and go to create a new project there is no=0Areference to = ruby...=0A=0AAny suggestions?=0A=0A(P.S I am new to Xcode)=0A=0Athanks!=0A-= - =0AMichael Steinfeld=0ALinux Admin/Developer=0AAIM: mikesteinfeld=0AGTALK= : mik...@gm...=0A=0A----------------------------------------------= ---------------------------=0AThis SF.net email is sponsored by: Microsoft= =0ADefy all challenges. Microsoft(R) Visual Studio 2005.=0Ahttp://clk.atdmt= .com/MRT/go/vse0120000070mrt/direct/01/=0A_________________________________= ______________=0ARubycocoa-talk mailing list=0AR...@li...urcef= orge.net=0Ahttps://lists.sourceforge.net/lists/listinfo/rubycocoa-talk=0A= =0A=0A=0A=0A=0A=0A=0A =0A____________________________________________= ________________________________________=0ABoardwalk for $500? In 2007? Ha!= Play Monopoly Here and Now (it's updated for today's economy) at Yahoo! Ga= mes.=0Ahttp://get.games.yahoo.com/proddesc?gamekey=3Dmonopolyherenow |
From: Michael S. <mik...@gm...> - 2007-09-24 01:06:12
|
hi I tried installing from the dmg first, no luck.. here is the log Sep 23 20:56:54 Tulku : run postflight script for RubyCocoa Sep 23 20:56:54 Tulku : postflight[13704]: ########################## Sep 23 20:56:54 Tulku : postflight[13704]: postflight process failed! Sep 23 20:56:54 Tulku : postflight[13704]: ########################## Sep 23 20:56:54 Tulku : postflight[13704]: Error: #<Errno::EEXIST: File exists - /usr/lib/libruby-with-thread-hooks.1.dylib or /usr/lib/libruby.1.dylib> Sep 23 20:56:54 Tulku : postflight[13704]: Sep 23 20:56:54 Tulku : postflight[13704]: old extlib exists. remove:/usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle Sep 23 20:56:54 Tulku : postflight[13704]: copy /usr/lib/ruby/site_ruby/1.8/universal-darwin8.0/rubycocoa.bundle to /usr//lib/ruby/site_ruby/1.8/i686-darwin8.10.1/rubycocoa.bundle Sep 23 20:56:54 Tulku : postflight[13704]: Overwriting /usr/lib/libruby.1.dylib with /usr/lib/libruby-with-thread-hooks.1.dylib Sep 23 20:56:54 Tulku : postflight[13704]: Sep 23 20:56:54 Tulku : Install failed: The following install step failed: run postflight script for RubyCocoa Sep 23 20:56:54 Tulku : Private/Total = (8.6MB, 67.1MB), Heap/Total = (2.1MB, 16.7MB), Regions(malloc, private) = (29, 38) Sep 23 20:56:54 Tulku : It took 17.308603 seconds to unsuccessfully install "RubyCocoa" (1 pkg(s)) Sep 23 20:56:54 Tulku : It took 1.003704 seconds to Configuring volume "Tulku" (dm prepare*disk) Sep 23 20:56:54 Tulku : It took 16.022288 seconds to Install RubyCocoa: 22 elements Sep 23 20:56:54 Tulku : It took 16.020269 seconds to unsuccessfully Install package RubyCocoa Sep 23 20:56:54 Tulku : It took 1.212703 seconds to Build install plan (& redirected paths) Sep 23 20:56:54 Tulku : It took 0.027071 seconds to Evaluating versions of bundles Sep 23 20:56:54 Tulku : It took 0.391311 seconds to Determing obsolete files Sep 23 20:56:54 Tulku : It took 0.171688 seconds to Assembling temporary receipt Sep 23 20:56:54 Tulku : It took 0.472183 seconds to Collect path info (ATS, Sec Equiv, Kext, Pref Panes) Sep 23 20:56:54 Tulku : It took 13.657333 seconds to Write files Sep 23 20:56:54 Tulku : It took 0.087158 seconds to Assembling receipt Sep 23 20:56:54 Tulku : It took 0.279921 seconds to run postflight script for RubyCocoa Sep 23 20:56:54 Tulku : Sep 23 20:56:54 Tulku : Summary Information I also tried from source still no luck... now, I jsut installed from macports and if I open irb and require 'rubycocoa' >> require 'rubycocoa' => true so okay that worked, Now when I open xcode, and go to create a new project there is no reference to ruby... Any suggestions? (P.S I am new to Xcode) thanks! -- Michael Steinfeld Linux Admin/Developer AIM: mikesteinfeld GTALK: mik...@gm... |
From: Yvon T. <yt...@ne...> - 2007-09-21 10:45:07
|
Le 21 sept. 07 =E0 12:27, Laurent Sansonetti a =E9crit : > > This kind of problems should not exist in 0.12, with the new threading > support. Did you install the new libruby.1.dylib as mentioned in misc/ > README_THREADING? > i think this has been done BUT in the wrong place : ~/SVN/rubycocoa%> locate libruby.1.dylib =92...] /Users/yt/SVN/rubycocoa/misc/libruby.1.dylib-tiger.tar.gz /usr/lib/libruby.1.dylib /usr/lib/libruby.1.dylib.original because the Ruby i'm using from RubuCocoa is the MacPorts one... i'll look at this point and repost afterwards. Yvon |
From: Laurent S. <lsa...@ap...> - 2007-09-21 10:27:56
|
On Sep 21, 2007, at 7:10 AM, Yvon Thoraval wrote: > Hey all, > > right now in my RubyCocoa project i get a bunch of errors like that : > > 2007-09-20 10:17:57.289 eSync[970] *** Exception handlers were not > properly removed. Some code has jumped or returned out of an > NS_DURING...NS_HANDLER region without using the NS_VOIDRETURN or > NS_VALUERETURN macros. > 2007-09-20 10:17:57.303 eSync[970] *** Attempt to remove unrecognized > exception handler 0xbfff5a14 This kind of problems should not exist in 0.12, with the new threading support. Did you install the new libruby.1.dylib as mentioned in misc/ README_THREADING? Laurent |
From: Yvon T. <yt...@ne...> - 2007-09-21 09:15:14
|
Le 21 sept. 07 =E0 11:10, Eloy Duran a =E9crit : > A better solution might be something like UKKQueue at: > http://www.zathras.de/angelweb/sourcecode.htm OK, thanks, i'll look at this solution Yvon= |
From: Eloy D. <elo...@gm...> - 2007-09-21 09:10:28
|
A better solution might be something like UKKQueue at: http://www.zathras.de/angelweb/sourcecode.htm Eloy On 9/21/07, Yvon Thoraval <yt...@ne...> wrote: > Hey all, > > right now in my RubyCocoa project i get a bunch of errors like that : > > 2007-09-20 10:17:57.289 eSync[970] *** Exception handlers were not > properly removed. Some code has jumped or returned out of an > NS_DURING...NS_HANDLER region without using the NS_VOIDRETURN or > NS_VALUERETURN macros. > 2007-09-20 10:17:57.303 eSync[970] *** Attempt to remove unrecognized > exception handler 0xbfff5a14 > > > I suspect this comes from a thread started when awakeFromNib : > > def awakeFromNib > [...] > @mutex = Mutex.new > @thread = start_thread > end > > [...] > > def start_thread > Thread.start { > loop do > update_state > sleep 5 > end > } > end > [...] > > def update_state > @mutex.synchronize do > change = false > @root.items.each { | item | > old_items = item.items_name() > new_items = getFolders( item.path ) > delta = ( old_items.length > new_items.length )? ( old_items > - new_items ) : ( new_items - old_items ) > if delta.length != 0 > item.refresh() > change = true > end > } > if change > @prefs.root = @root > @prefs.save > @outlineView.reloadData > end > @syncButton.setEnabled( FileTest.exists?( "# > {@prefs.root.path}" ) ) > end > end > > > the purpose of thsi thread is to refresh folder structure after a > change of it. > > may be there are better and cleaner solution. > > best, > > Yvon > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Rubycocoa-talk mailing list > Rub...@li... > https://lists.sourceforge.net/lists/listinfo/rubycocoa-talk > |