Re: [id-ruby] versi Ruby yang umum dipakai???

2008-03-11 Terurut Topik Kamal Fariz
1.8.6 from macports (patch level 110) - the one provided by Leopard does weird things with gems. Also, some people swear by 1.8.5 with the gc patch for production for stability reasons. kamal On Mar 11, 2008, at 11:27 PM, [EMAIL PROTECTED] wrote: haLu,,, saya sedang mengerjakan tugas

Re: [id-ruby] Wizard di Rails

2008-01-23 Terurut Topik Kamal Fariz
Teknik utk membuat wizard: acts_as_state_machine. Make a Wizard model that handles the state of the wizard and a WizardController that advances the state of the Wizard. The Wizard model itself probably will be using composed_of to become the container for the real objects that you

Re: [id-ruby] Rails 2.0 issue

2008-01-22 Terurut Topik Kamal Fariz
The error is because of the new RubyGems version, not because of Rails 2. require_gem is deprecated. Replace all instances of require_gem with just gem E.g. old require_gem 'activesupport' new - gem 'activesupport' On Jan 22, 2008, at 3:31 PM, Yudi Soesanto wrote: Guys,

[id-ruby] Fwd: [malaysia-rb] Looking for RoR Developer Team for KL Project

2008-01-22 Terurut Topik Kamal Fariz
Freelance rails project opportunity. Should be in KL or willing to travel to KL to meet clients. Begin forwarded message: From: paco [EMAIL PROTECTED] Date: January 21, 2008 10:58:32 PM GMT+08:00 To: Malaysia Ruby Brigade [EMAIL PROTECTED] Subject: [malaysia-rb] Looking for RoR Developer

Re: jed on rubinius (was: Re: [id-ruby] Zed's Rant)

2008-01-16 Terurut Topik Kamal Fariz
accepted and you are given the commit bits. http://git.rubini.us/?p=codea=searchh=HEADst=authors=Kamal+Fariz The superstars are talking about really more advanced stuff like Multi- VM which flies over my head. I just stick to simple fixing of the standard core libraries. Have fun! Regards

[id-ruby] [ANN] Malaysia.rb January 2008 Meetup

2008-01-14 Terurut Topik Kamal Fariz
to be won When: Thursday, January 17th 2008, 8:00PM Agenda: 7:00 - 8:00pm Pre-meetup PeepCode screening 8:00 - 8:15pm Opening by the Organizer 8:15 - 8:45pm From Batu Gajah to Mountain View and Beyond - Colin Wong 8:45 - 9:15pm Rails Fragment Caching with Interlock - Kamal Fariz 9:15 - 9:35pm

Re: [id-ruby] [ANN] Malaysia.rb January 2008 Meetup

2008-01-14 Terurut Topik Kamal Fariz
Yup, the singapore.rb guys have their meetups every last Thursday of the month. Gonna miss this meetup. I will be in S'pore on January 17th 'till 20th. Any Singapore.rb here? AFAIK They'll hold a ruby meetup on Jan 31st, '08

Re: [id-ruby] [rails-tips] playing with collect(:field

2008-01-14 Terurut Topik Kamal Fariz
map is defined in the Enumerable module. A has_many association will return a HasManyAssociation proxy which is a subclass of AssociationCollection. It is possible that AssociationCollection mixes in Enumerable, but I can't find it right now. However, it looks like you are calling map on a