Re: [ANN] Mosquito TDD Framework Updated

2007-09-25 Thread Manfred Stienstra
On Sep 25, 2007, at 12:40 AM, Geoffrey Grosenbach wrote: Thanks to contributions by new team member Julian 'Julik' Tarkhanov! I was just going to remark that some changelog items have a very distinct Julian style to them. Thanks for the great work guys. Manfred

Re: Next camping release

2007-09-25 Thread Jonas Pfenniger
2007/9/25, Michael Maltese [EMAIL PROTECTED]: That makes sense. An extension, do you mean like camping/session? Yes, and the gem dependency would only be added to camping-omnibus. But first, let's release Camping 1.6 -- Cheers, zimbatm ___

Re: Session cookies not passed on first redirect

2007-09-25 Thread Julian 'Julik' Tarkhanov
On Sep 25, 2007, at 10:50 PM, Jonas Pfenniger wrote: can you try the attached patch applied to camping-trunk ? camping-session.diff Will try. Cannot find the SVN URL on the site - only the trac is showing. As of exceptions - in this case I catch the exception myself and return from

Re: Session cookies not passed on first redirect

2007-09-25 Thread Julian 'Julik' Tarkhanov
On Sep 25, 2007, at 11:20 PM, Jonas Pfenniger wrote: 2007/9/25, Julian 'Julik' Tarkhanov [EMAIL PROTECTED]: Cannot find the SVN URL on the site - only the trac is showing. `svn co http://code.whytheluckystiff.net/svn/camping/trunk` Thx. Checked that. No the issue isn't fixed. I suspect

putting away HashWithIndifferentAccess

2007-09-25 Thread why the lucky stiff
Hey, campineros. And many good handshakes to zimbatm for getting some patches applied. So, yeah, I'd really like to get rid of any serious dependancies with this 1.6 release. Anything that's not in stdlib has to go. Of course, camping-omnibus will still assume the whole ActiveRecord, Markaby,

Re: putting away HashWithIndifferentAccess

2007-09-25 Thread Julian 'Julik' Tarkhanov
On Sep 26, 2007, at 12:26 AM, why the lucky stiff wrote: class H OpenStruct How about class H (HashWithIndifferentAccess rescue Hash) for the lesser among us (who always include and require)? -- Julian 'Julik' Tarkhanov please send all personal mail to [EMAIL PROTECTED]

Re: putting away HashWithIndifferentAccess

2007-09-25 Thread Evan Weaver
Regular hashes are good. Would need to make a decision whether to prefer string or symbol keys. String is easier to support; Symbol looks prettier in your editor. Evan On 9/25/07, Julian 'Julik' Tarkhanov [EMAIL PROTECTED] wrote: On Sep 26, 2007, at 12:26 AM, why the lucky stiff wrote:

Re: putting away HashWithIndifferentAccess

2007-09-25 Thread Julian 'Julik' Tarkhanov
On Sep 26, 2007, at 2:05 AM, MenTaLguY wrote: behind the scenes, every uniquely named method introduces a symbol. yep. but then it's _you_ who calls that accessor, not some John Doe who sends you a POST :-) -- Julian 'Julik' Tarkhanov please send all personal mail to [EMAIL PROTECTED]

Re: putting away HashWithIndifferentAccess

2007-09-25 Thread Evan Weaver
On 9/25/07, Julian 'Julik' Tarkhanov [EMAIL PROTECTED] wrote: this might already be a server crasher. you know how many unique to_syms you can do before the table is full? As far as I can tell, sym_tbl is just a regular st_table, so it's an expanding array similar to the Ruby heap. So there's