Re: [MacRuby-devel] 0.9 update
Everything looks good for me ! Tested with 2 apps. Thanks a lot for your awesome job ! Greg 2011/2/23 Justin Schumacher : > Ran my app test suite w/ the 0.9 branch and it looks good-- thanks! > > On Tue, Feb 22, 2011 at 2:24 PM, Johannes Fahrenkrug > wrote: >> >> That's awesome, Laurent! Merci! >> >> - Johannes >> >> On Tue, Feb 22, 2011 at 2:20 PM, Laurent Sansonetti >> wrote: >> > Hi guys, >> > >> > 0.9 is now ready to be released! (really!). The trunk branch has been >> > copied >> > as branches/0.9 and we will continue the development on trunk, which now >> > uses the 0.10 version number. >> > >> > It would be nice if you could try the latest nightly build with your app >> > and >> > favorite Ruby lib, and let me know if you find anything wrong, as I >> > had to >> > change (again) the const lookup rules to fix a regression. yesterday. I >> > did >> > a bit of testing and I'm confident the fix is good, but I would prefer >> > to see more testing. >> > >> > http://www.macruby.org/files/nightlies/macruby_nightly-2011-02-22.pkg >> > If I don't hear anything bad, 0.9 will be released Friday :) >> > >> > Thanks, >> > Laurent >> > ___ >> > MacRuby-devel mailing list >> > [email protected] >> > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel >> > >> > >> >> >> >> -- >> springenwerk.com | github.com/jfahrenkrug | twitter.com/jfahrenkrug >> ___ >> MacRuby-devel mailing list >> [email protected] >> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel > > > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel > > ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] 0.9 update
Great timing, I've switched from 0.8 to edge just a few days ago due to a bug that was fixed two days after 0.8 came out. :) Btw, can I contribute an example of a StatusBarMenu with a custom view in one of the menuitems? ciao, tom Am 22.02.2011 um 23:20 schrieb Laurent Sansonetti: > Hi guys, > > 0.9 is now ready to be released! (really!). The trunk branch has been copied > as branches/0.9 and we will continue the development on trunk, which now uses > the 0.10 version number. > > It would be nice if you could try the latest nightly build with your app and > favorite Ruby lib, and let me know if you find anything wrong, as I had to > change (again) the const lookup rules to fix a regression. yesterday. I did a > bit of testing and I'm confident the fix is good, but I would prefer to see > more testing. > > http://www.macruby.org/files/nightlies/macruby_nightly-2011-02-22.pkg > > If I don't hear anything bad, 0.9 will be released Friday :) ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] loop audio file seamlessly (Zachary Kaplan)
Hi Zak, Try looking at the QTMovie. It is much more reliable and handles audio well. If you need a sample I can post something tonight. Thank you, On 2011-02-22, at 10:27 PM, Zachary Kaplan wrote: > hello all, > > i received a suggestion from another member to check out the PlayFile > example in the audio toolbox examples. > > while this was very helpful in putting me on the right track for basic > low level audio manipulation, there are some additional related issues > i've encountered in trying to port over the example to macruby. > > most notably, i don't seem to have some of the most important methods > available such as AudioFileOpenURL. > > perhaps (most likely) i am just doing something wrong. i have bridge support > 2. > > also if anyone has any macruby audio examples, i'd love to see what > others have done. > > could anyone else provide some more insight? > > thanks in advance > -zak > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
[MacRuby-devel] NoMethodError (ib_outlets)
Hi I'm giving my first MacRuby application a shot, and I'm sort of blind to be honest :) I've added a NSWindowController, attached it to my window, saved the classes in Interface Builder, but when I build and run my application, I get a NoMethodError for 'ib_outlets'. My controller inherits from NSResponder. The stranger thing is, I guess, when I remove any code referencing ib_outlets, the same error is raised again. NoMethodError. Any advice? What class defines ib_outlets? Am I doing it completely wrong? Thanks. -- Rob ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] NoMethodError (ib_outlets)
Hey Rob, Could you by chance upload the source to github or somewhere? It'd be a lot easier to help seeing the whole picture. -Robert On Feb 24, 2011, at 10:57 AM, Rob Gleeson wrote: > Hi > > I'm giving my first MacRuby application a shot, and I'm sort of blind to be > honest :) > I've added a NSWindowController, attached it to my window, saved the classes > in Interface Builder, but when I build and run my application, I get a > NoMethodError for 'ib_outlets'. > > My controller inherits from NSResponder. > > The stranger thing is, I guess, when I remove any code referencing > ib_outlets, the same error is raised again. NoMethodError. > > Any advice? What class defines ib_outlets? Am I doing it completely wrong? > Thanks. > > -- > Rob > > > > > > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] NoMethodError (ib_outlets)
Hi Rob, ib_outlets is an old RubyCocoa craft that is not supported in MacRuby since a long time. You can define IB outlets using the attr_writer or attr_accessor methods. You can define IB actions by defining methods accepting a single argument, named 'sender'. There are lots of documentation about this on the net. Here is a pointer to a nice tutorial that you might be interested to follow. http://blog.phusion.nl/2010/03/12/creating-our-very-first-mac-application-with-ruby-how-exciting/#more-509 Laurent On Feb 23, 2011, at 1:57 PM, Rob Gleeson wrote: > Hi > > I'm giving my first MacRuby application a shot, and I'm sort of blind to be > honest :) > I've added a NSWindowController, attached it to my window, saved the classes > in Interface Builder, but when I build and run my application, I get a > NoMethodError for 'ib_outlets'. > > My controller inherits from NSResponder. > > The stranger thing is, I guess, when I remove any code referencing > ib_outlets, the same error is raised again. NoMethodError. > > Any advice? What class defines ib_outlets? Am I doing it completely wrong? > Thanks. > > -- > Rob > > > > > > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] 0.9 update
Hi Thomas, Yes that would be awesome! Please file a new ticket and attach your sample there, and we will review and add it to the samples repository :) Laurent On Feb 23, 2011, at 12:25 AM, Thomas R. Koll wrote: > > Great timing, I've switched from 0.8 to edge just a few days ago due to > a bug that was fixed two days after 0.8 came out. :) > > Btw, can I contribute an example of a StatusBarMenu with a custom view in one > of the menuitems? > > ciao, tom > > > Am 22.02.2011 um 23:20 schrieb Laurent Sansonetti: > >> Hi guys, >> >> 0.9 is now ready to be released! (really!). The trunk branch has been copied >> as branches/0.9 and we will continue the development on trunk, which now >> uses the 0.10 version number. >> >> It would be nice if you could try the latest nightly build with your app and >> favorite Ruby lib, and let me know if you find anything wrong, as I had to >> change (again) the const lookup rules to fix a regression. yesterday. I did >> a bit of testing and I'm confident the fix is good, but I would prefer to >> see more testing. >> >> http://www.macruby.org/files/nightlies/macruby_nightly-2011-02-22.pkg >> >> If I don't hear anything bad, 0.9 will be released Friday :) > > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] NoMethodError (ib_outlets)
Hi Laurent & Robert, Thanks! I'm going places now :) On 23 Feb 2011, at 22:13, Laurent Sansonetti wrote: > Hi Rob, > > ib_outlets is an old RubyCocoa craft that is not supported in MacRuby since a > long time. You can define IB outlets using the attr_writer or attr_accessor > methods. You can define IB actions by defining methods accepting a single > argument, named 'sender'. > > There are lots of documentation about this on the net. Here is a pointer to a > nice tutorial that you might be interested to follow. > > http://blog.phusion.nl/2010/03/12/creating-our-very-first-mac-application-with-ruby-how-exciting/#more-509 > > Laurent > > On Feb 23, 2011, at 1:57 PM, Rob Gleeson wrote: > >> Hi >> >> I'm giving my first MacRuby application a shot, and I'm sort of blind to be >> honest :) >> I've added a NSWindowController, attached it to my window, saved the classes >> in Interface Builder, but when I build and run my application, I get a >> NoMethodError for 'ib_outlets'. >> >> My controller inherits from NSResponder. >> >> The stranger thing is, I guess, when I remove any code referencing >> ib_outlets, the same error is raised again. NoMethodError. >> >> Any advice? What class defines ib_outlets? Am I doing it completely wrong? >> Thanks. >> >> -- >> Rob >> >> >> >> >> >> ___ >> MacRuby-devel mailing list >> [email protected] >> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel > > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel -- Rob ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] 0.9 update
> > It would be nice if you could try the latest nightly build with your > app and favorite Ruby lib My app is working with 0.9. My build process embeds MacRuby in the app bundle, and packages the Nokogiri and Gdata gems. Everything is working so far with 0.9. Thanks! Cheers, Andre ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] MacRuby-devel Digest, Vol 36, Issue 42
--- > > Message: 3 > Date: Thu, 24 Feb 2011 11:08:59 +1300 > From: Robert Payne > To: "MacRuby development discussions." > > Subject: Re: [MacRuby-devel] NoMethodError (ib_outlets) > Message-ID: > Content-Type: text/plain; CHARSET=US-ASCII > > Hey Rob, > > Could you by chance upload the source to github or somewhere? It'd be a lot > easier to help seeing the whole picture. > > -Robert > > On Feb 24, 2011, at 10:57 AM, Rob Gleeson wrote: > >> Hi >> >> I'm giving my first MacRuby application a shot, and I'm sort of blind to be >> honest :) >> I've added a NSWindowController, attached it to my window, saved the classes >> in Interface Builder, but when I build and run my application, I get a >> NoMethodError for 'ib_outlets'. >> >> My controller inherits from NSResponder. >> >> The stranger thing is, I guess, when I remove any code referencing >> ib_outlets, the same error is raised again. NoMethodError. >> >> Any advice? What class defines ib_outlets? Am I doing it completely wrong? >> Thanks. >> >> -- >> Rob >> >> >> >> >> >> ___ >> MacRuby-devel mailing list >> [email protected] >> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel > > > > -- > > Message: 4 > Date: Wed, 23 Feb 2011 14:13:51 -0800 > From: Laurent Sansonetti > To: "MacRuby development discussions." > > Subject: Re: [MacRuby-devel] NoMethodError (ib_outlets) > Message-ID: > Content-Type: text/plain; charset="us-ascii" > > Hi Rob, > > ib_outlets is an old RubyCocoa craft that is not supported in MacRuby since a > long time. You can define IB outlets using the attr_writer or attr_accessor > methods. You can define IB actions by defining methods accepting a single > argument, named 'sender'. > > There are lots of documentation about this on the net. Here is a pointer to a > nice tutorial that you might be interested to follow. > > http://blog.phusion.nl/2010/03/12/creating-our-very-first-mac-application-with-ruby-how-exciting/#more-509 > > Laurent > > On Feb 23, 2011, at 1:57 PM, Rob Gleeson wrote: > >> Hi >> >> I'm giving my first MacRuby application a shot, and I'm sort of blind to be >> honest :) >> I've added a NSWindowController, attached it to my window, saved the classes >> in Interface Builder, but when I build and run my application, I get a >> NoMethodError for 'ib_outlets'. >> >> My controller inherits from NSResponder. >> >> The stranger thing is, I guess, when I remove any code referencing >> ib_outlets, the same error is raised again. NoMethodError. >> >> Any advice? What class defines ib_outlets? Am I doing it completely wrong? >> Thanks. >> >> -- >> Rob >> >> >> >> >> >> ___ >> MacRuby-devel mailing list >> [email protected] >> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel > > -- next part -- > An HTML attachment was scrubbed... > URL: > <http://lists.macosforge.org/pipermail/macruby-devel/attachments/20110223/87bcf0ca/attachment-0001.html> > > -- > > Message: 5 > Date: Wed, 23 Feb 2011 14:14:36 -0800 > From: Laurent Sansonetti > To: "MacRuby development discussions." > > Subject: Re: [MacRuby-devel] 0.9 update > Message-ID: > Content-Type: text/plain; charset="us-ascii" > > Hi Thomas, > > Yes that would be awesome! Please file a new ticket and attach your sample > there, and we will review and add it to the samples repository :) > > Laurent > > On Feb 23, 2011, at 12:25 AM, Thomas R. Koll wrote: > >> >> Great timing, I've switched from 0.8 to edge just a few days ago due to >> a bug that was fixed two days after 0.8 came out. :) >> >> Btw, can I contribute an example of a StatusBarMenu with a custom view in >> one of the menuitems? >> >> ciao, tom >> >> >> Am 22.02.2011 um 23:20 schrieb Laurent Sansonetti: >> >>> Hi guys, >>> >>> 0.9 is now ready to be released! (really!). The trunk branch has been >>> copied as branches/0.9 and we will continue the development on trunk, which >>> now uses the 0.10 version number. >>> >>> It would be nice if you could try the latest
Re: [MacRuby-devel] 0.9 update
Hi Andre, Thanks for reporting this. Are you using the new macruby_deploy --gem option to embed the gems? Laurent On Feb 23, 2011, at 5:33 PM, Andre Lewis wrote: > It would be nice if you could try the latest nightly build with your app and > favorite Ruby lib > > My app is working with 0.9. My build process embeds MacRuby in the app > bundle, and packages the Nokogiri and Gdata gems. Everything is working so > far with 0.9. > > Thanks! Cheers, > > Andre > > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] 0.9 update
> > It would be nice if you could try the latest nightly build with your app > and favorite Ruby lib, and let me know if you find anything wrong > Happy to report all ControlTower samples are working with trunk, cap'n! ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
