Re: [MacRuby-devel] About rake, llvm_config and "prefix"

2011-02-22 Thread Joshua Ballanco
Have a look at the output of running 'rake -T' in the directory where you checked out MacRuby's source. That should answer your question. On Sat, Feb 19, 2011 at 12:00 PM, Huahang Liu wrote: > Greetings All, > > I was trying to build MacRuby. However, I got an error saying that: > > *The llvm-co

Re: [MacRuby-devel] Towards a compile option for macgem

2011-02-22 Thread Joshua Ballanco
Hey Mark, I agree with Matt that macruby_deploy needs work in this area, and any effort you can contribute (or experience that you have gained from working on your gem plugin) would be greatly appreciated. That said, I think a gem plugin is a separate (and, IMHO at least, as valuable) issue. So t

Re: [MacRuby-devel] NSLocalizedString

2011-02-22 Thread Eloy Duran
Something like this: module Kernel private def NSLocalizedString(key, value) NSBundle.mainBundle.localizedStringForKey(key, value:value, table:nil) end end On 21 feb 2011, at 23:56, Charles Steinman wrote: > On Mon, Feb 21, 2011 at 8:23 AM, Martin Hawkins > wrote: >> Changing the lin

[MacRuby-devel] 0.9 update

2011-02-22 Thread 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 m

[MacRuby-devel] 0.9 update

2011-02-22 Thread 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 m

Re: [MacRuby-devel] 0.9 update

2011-02-22 Thread Robert Payne
Fantastic news Laurent! -Robert On Feb 23, 2011, at 11:20 AM, 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. > > I

Re: [MacRuby-devel] 0.9 update

2011-02-22 Thread Johannes Fahrenkrug
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 num

Re: [MacRuby-devel] NSLocalizedString

2011-02-22 Thread Laurent Sansonetti
We could add such a method in MacRuby core, but I wonder if it will be really that much of a use. NSLocalizedString macros are used in Objective-C programs because they are parsed by the genstrings command-line tool, to generate the translation file. I am not sure if genstrings can be used on Ru

Re: [MacRuby-devel] Towards a compile option for macgem

2011-02-22 Thread Laurent Sansonetti
I think that macgem should just compile the gem source files during installation, by default. We could eventually add a --no-compile argument to skip the compilation. There is just one problem: AOT compilation does not remember the DWARF metadata yet, so backtraces won't be complete. This is th

Re: [MacRuby-devel] 0.9 update

2011-02-22 Thread 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!

[MacRuby-devel] stopping to build for i386

2011-02-22 Thread Laurent Sansonetti
Hi, As of r5239 in trunk, the default build process will no longer build for both i386 and x86_64, but just x86_64. This is an attempt at accelerating the build process and reducing the framework objects size. We are however not removing any i386-related code from the project, and one will sti

Re: [MacRuby-devel] loop audio file seamlessly (Zachary Kaplan)

2011-02-22 Thread Zachary Kaplan
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