Re: [MacRuby-devel] objc block and ruby block?

2009-09-16 Thread Laurent Sansonetti
On Sep 16, 2009, at 6:49 PM, Benjamin Stiglitz wrote: This is currently not implemented. It is not planned for the upcoming release mostly because I don't think it's that important, since all block methods in Cocoa also have methods dealing with function pointers, which will be supported.

Re: [MacRuby-devel] unrecognised defined?

2009-09-16 Thread Laurent Sansonetti
Hi Ben, This is a missing feature in the compiler, in the way we compile the defined? expression. It's easily reproducible here: $ ./miniruby -e 'p (defined? FOO && 42)' unrecognized defined? arg: 21 (NODE_AND)Abort trap I filed a test_vm case. Now, it looks like the code you found this pr

Re: [MacRuby-devel] [MacRuby] #335: Top-level RDoc for gcd.c

2009-09-16 Thread MacRuby
#335: Top-level RDoc for gcd.c +--- Reporter: ernest.prabha...@… |Owner: lsansone...@… Type: enhancement | Status: closed Priority: blocker

Re: [MacRuby-devel] objc block and ruby block?

2009-09-16 Thread Benjamin Stiglitz
This is currently not implemented. It is not planned for the upcoming release mostly because I don't think it's that important, since all block methods in Cocoa also have methods dealing with function pointers, which will be supported. Not true of some of the new Foundation and AppKit APIs.

Re: [MacRuby-devel] Nib issues on Snow Leopard

2009-09-16 Thread Matt Aimonetti
Actually... it's in the "TODO" list, I'm not sure it's in the official todo list available in the repo. I'll check with Laurent to see what priority he wants to assign to that std lib. Thanks for the report and the 0.5 version of the example app. - Matt On Wed, Sep 16, 2009 at 6:21 PM, Bjoern Pa

Re: [MacRuby-devel] Nib issues on Snow Leopard

2009-09-16 Thread Bjoern Paschen
Hello Matt... Thanks for the info. I didn't check that list, I should do it right away. :) Cheers, Bjoern. Am 17.09.2009 um 03:17 schrieb Matt Aimonetti: CGI isn't fully working on 0.5 yet, it's on the todo list tho. - Matt ___ MacRuby-devel ma

Re: [MacRuby-devel] Nib issues on Snow Leopard

2009-09-16 Thread Matt Aimonetti
CGI isn't fully working on 0.5 yet, it's on the todo list tho. - Matt On Wed, Sep 16, 2009 at 6:12 PM, Bjoern Paschen wrote: > Hello Alex... > > I watched that peepcode screencast a couple of days ago and build the app > from scratch with macruby 0.5. If it is of any help, I put the project > di

Re: [MacRuby-devel] [MacRuby] #336: NoMethodError with shoulda tests

2009-09-16 Thread MacRuby
#336: NoMethodError with shoulda tests +--- Reporter: macr...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major

Re: [MacRuby-devel] Nib issues on Snow Leopard

2009-09-16 Thread Bjoern Paschen
Hello Alex... I watched that peepcode screencast a couple of days ago and build the app from scratch with macruby 0.5. If it is of any help, I put the project directory on my ftp: ftp://witwenmacher.com/TwittRb.zip The app works so far, except for the "require 'cgi'" in TwittRbDelegate.r

Re: [MacRuby-devel] [MacRuby] #336: NoMethodError with shoulda tests

2009-09-16 Thread MacRuby
#336: NoMethodError with shoulda tests +--- Reporter: macr...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major

Re: [MacRuby-devel] unrecognised defined?

2009-09-16 Thread Matt Aimonetti
hmm are you on 0.5 trunk? macgem isn't fully working and require on a gem doesn't work However it also fails on trunk: $ macruby -e "require 'rubygems'; gem 'grit'; require 'grit'" unrecognized defined? arg: 21 (NODE_AND)Abort trap Please open a ticket so we can look into it. Thanks, - Matt

[MacRuby-devel] unrecognised defined?

2009-09-16 Thread Ben Schwarz
Hey folks, After installing the 'grit' gem I required' it in macirb and received the following: b...@homeslice ~ Ϟ macirb irb(main):001:0> require 'grit' unrecognized defined? arg: 21 (NODE_AND)fish: Job 1, 'macirb' terminated by signal SIGABRT (Abort) Which, I believe i

Re: [MacRuby-devel] macruby nightly build 2009-09-10

2009-09-16 Thread Eloy Duran
Hey Conrad, The readme that should get you started with the specs is available in spec/README.rdoc (http://github.com/masterkain/macruby/blob/master/spec/README.rdoc ). I'm sure there will be some issues you run into as I haven't updated it in a while. Feel free to update it and/or ask me qu

Re: [MacRuby-devel] Nib issues on Snow Leopard

2009-09-16 Thread Matt Aimonetti
I'll look at it after work, there shouldn't be anything to write for it to work under 0.5. - Matt On Wed, Sep 16, 2009 at 3:26 PM, Alex Vollmer wrote: > Yeah, sorry for the lack of details. The code is posted on GitHub at > http://github.com/peepcode/peepcode-035-macruby. I was curious if this w

Re: [MacRuby-devel] Nib issues on Snow Leopard

2009-09-16 Thread Alex Vollmer
Yeah, sorry for the lack of details. The code is posted on GitHub at http://github.com/peepcode/peepcode-035-macruby . I was curious if this was some well-known 0.5 issue. It appears that it's not so the next step is probably to start re-building the app a bit at a time in 0.5 (it's not that m

Re: [MacRuby-devel] [MacRuby] #335: Top-level RDoc for gcd.c

2009-09-16 Thread Matt Aimonetti
Thanks Ernie, I'll add your doc to the file. - Matt Sent from my iPhone On Sep 16, 2009, at 13:48, "MacRuby" wrote: #335: Top-level RDoc for gcd.c +--- Reporter: ernest.prabha...@… | Owner: lsansone

Re: [MacRuby-devel] macruby nightly build 2009-09-10

2009-09-16 Thread Matt Aimonetti
Actually it's a bit more complicated than that since we need to tag specs before adding them to rake spec:ci I'm sure Eloy will explain where to find the spec readme and conventions Sent from my iPhone On Sep 16, 2009, at 13:54, Conrad Taylor wrote: Hi Matt, thanks for gettih back to me. I

[MacRuby-devel] [MacRuby] #338: Typo in rb_source_on_cancellation in gcd.c

2009-09-16 Thread MacRuby
#338: Typo in rb_source_on_cancellation in gcd.c +--- Reporter: ernest.prabha...@… | Owner: lsansone...@… Type: defect | Status: new Priority: trivi

[MacRuby-devel] [MacRuby] #337: Bug in rb_source_new_timer in gcd.c

2009-09-16 Thread MacRuby
#337: Bug in rb_source_new_timer in gcd.c +--- Reporter: ernest.prabha...@… | Owner: lsansone...@… Type: defect | Status: new Priority: minor

Re: [MacRuby-devel] [MacRuby] #336: NoMethodError with shoulda tests

2009-09-16 Thread MacRuby
#336: NoMethodError with shoulda tests +--- Reporter: macr...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major

Re: [MacRuby-devel] [MacRuby] #336: NoMethodError with shoulda tests

2009-09-16 Thread MacRuby
#336: NoMethodError with shoulda tests +--- Reporter: macr...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major

Re: [MacRuby-devel] macruby nightly build 2009-09-10

2009-09-16 Thread Conrad Taylor
Hi Matt, thanks for gettih back to me. In regards to the failing specs, how does one determine what's failing? I have been running the following: rake spec:ci In any case, I would like to get started on this as soon as possible. Thus, if someone can provide the details, it would be grea

[MacRuby-devel] [MacRuby] #336: NoMethodError with shoulda tests

2009-09-16 Thread MacRuby
#336: NoMethodError with shoulda tests +--- Reporter: macr...@… | Owner: lsansone...@… Type: defect | Status: new Priority: major

[MacRuby-devel] [MacRuby] #335: Top-level RDoc for gcd.c

2009-09-16 Thread MacRuby
#335: Top-level RDoc for gcd.c +--- Reporter: ernest.prabha...@… | Owner: lsansone...@… Type: enhancement | Status: new Priority: blocker

Re: [MacRuby-devel] [MacRuby] #334: MacIrb hangs after require on Snow Leopard

2009-09-16 Thread MacRuby
#334: MacIrb hangs after require on Snow Leopard -+-- Reporter: rwa...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker

[MacRuby-devel] [MacRuby] #334: MacIrb hangs after require on Snow Leopard

2009-09-16 Thread MacRuby
#334: MacIrb hangs after require on Snow Leopard -+-- Reporter: rwa...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker

Re: [MacRuby-devel] Failed Assertion from 2009-09-04 Nightly Build

2009-09-16 Thread Laurent Sansonetti
Indeed, Core Duo is 32-bit, Core 2 Duo is 64-bit. MacRuby is a universal (both 32-bit and 64-bit) Intel binary, so it works on both modes. But currently, the 32-bit support was neglected, as you can see. A MacRuby application will run on any Intel architecture supported in Mac OS X. HTH,

Re: [MacRuby-devel] Nib issues on Snow Leopard

2009-09-16 Thread Matt Aimonetti
Could you give us more info or even better the source code? Thanks, - Matt On Tue, Sep 15, 2009 at 8:15 PM, Alex Vollmer wrote: > I'm trying to get a project that ran on MacRuby 0.4 and Leopard working > with 0.5 on Snow Leopard. When I launch the app I get the following errors: > > 2009-09-15

[MacRuby-devel] trunk status update

2009-09-16 Thread Laurent Sansonetti
Another status update about the development of MacRuby. The last update was about a month ago, I'm sorry about that. A lot of things happened since, but this status only covers visible points. The upcoming status updates will be more detailed :) - A lot of StringIO work was done. - Added a