Re: [MacRuby-devel] macirb or not working with awesome_print

2010-10-05 Thread Joshua Ballanco
Hi Brad, What's happening here is that the 'gem' command that ships with MacRuby is named 'macgem'. However, 'macirb' still looks at the same .irbrc file that the system 'irb' command does. So, if you've put in a require for awesome_print into your .irbrc, then 'macirb' will look for it but not

Re: [MacRuby-devel] [ANN] MacRuby 0.7

2010-10-05 Thread Antony Blakey
On 06/10/2010, at 3:08 PM, russell muetzelfeldt wrote: > On 06/10/2010, at 1:00 AM, macruby-devel-requ...@lists.macosforge.org wrote: > >> After 5 months of development since the last release, MacRuby 0.7 is >> now available. Get it here while it's still hot! > > cool! > > > Now that 0.7 is o

[MacRuby-devel] macirb or not working with awesome_print

2010-10-05 Thread Brad Hutchins
"DietRB" or "macirb" don't seem to be working after I install "gem awesome_print" I have to "gem uninstall awesome_print" to get it to work. I am guessing DietRB may be the name of the IRB but it is still launches with "macirb" localhost:Homebrew Brad$ *rvm macruby* localhost:Homebrew Brad$

Re: [MacRuby-devel] [ANN] MacRuby 0.7

2010-10-05 Thread russell muetzelfeldt
On 06/10/2010, at 1:00 AM, macruby-devel-requ...@lists.macosforge.org wrote: > After 5 months of development since the last release, MacRuby 0.7 is > now available. Get it here while it's still hot! cool! Now that 0.7 is out I've just tried to "macgem install control_tower", but it's warning m

Re: [MacRuby-devel] MacRuby Document-based Application template seems a bit broken

2010-10-05 Thread Laurent Sansonetti
On Oct 5, 2010, at 3:39 PM, Caio Chassot wrote: > On 2010-10-05, at 18:20 , Laurent Sansonetti wrote: >> >> Hi Caio, >> >> Could you file a ticket and attach either a patch or a new copy of the >> templates? (Also, make sure you do not use Xcode4 for this.) > > There: http://www.macruby.org/

Re: [MacRuby-devel] MacRuby Document-based Application template seems a bit broken

2010-10-05 Thread Caio Chassot
On 2010-10-05, at 18:20 , Laurent Sansonetti wrote: > > Hi Caio, > > Could you file a ticket and attach either a patch or a new copy of the > templates? (Also, make sure you do not use Xcode4 for this.) There: http://www.macruby.org/trac/ticket/932 Speaking of Trac, can we maybe change it to

Re: [MacRuby-devel] NSArray's count and Ruby Array#count

2010-10-05 Thread Caio Chassot
On 2010-10-05, at 18:15 , Laurent Sansonetti wrote: > > You found out an exception :) As you know, NSArray responds to -count which > simply return the number of elements it contains. But Ruby Array defines > #count which has different semantics. > > To not conflict with NSArray, the Ruby #coun

Re: [MacRuby-devel] MacRuby Document-based Application template seems a bit broken

2010-10-05 Thread Laurent Sansonetti
Hi Caio, Could you file a ticket and attach either a patch or a new copy of the templates? (Also, make sure you do not use Xcode4 for this.) Thanks, Laurent On Oct 3, 2010, at 9:35 PM, Caio Chassot wrote: > I had to make the following changes to make it work: > > - Change File's Owner class

Re: [MacRuby-devel] NSArray's count and Ruby Array#count

2010-10-05 Thread Laurent Sansonetti
Hi Caio, You found out an exception :) As you know, NSArray responds to -count which simply return the number of elements it contains. But Ruby Array defines #count which has different semantics. To not conflict with NSArray, the Ruby #count is only defined on Ruby arrays. However, I do not un