Re: WEBrick Re: Next camping release

2007-09-27 Thread Jonas Pfenniger
2007/9/27, Ernest Prabhakar [EMAIL PROTECTED]: I was looking at the test cases on the changeset: http://code.whytheluckystiff.net/camping/browser/trunk/test?rev=227 However, I didn't see anything about testing with different web browsers; which is a concern since there was a nasty WEBrick

Re: WEBrick Re: Next camping release

2007-09-27 Thread Manfred Stienstra
On Sep 27, 2007, at 10:44, Jonas Pfenniger wrote: P.S. I mean to file the bug, but got into a fight with the trac system. ;-( Patch uploads seem to be broken, so maybe _why can have a look-see? Manfred ___ Camping-list mailing list

Camping and ruby2ruby

2007-09-27 Thread Gregor Schmidt
Hi everybody, I would like to use ruby2ruby in a caming project, but there seems to be an incompatibility with camping, ruby2ruby and markaby. Unfortunately I receive strange Markaby::InvalidXhtmlErrors. To demonstrate, that only combination of all three components causes the problem I added the

Re: Camping and ruby2ruby

2007-09-27 Thread Jonas Pfenniger
Hi Gregor, I wasn't able to track the error on Camping side, but it comes from r2r that defines nil.error_missing. 2007/9/27, Gregor Schmidt [EMAIL PROTECTED]: require rubygems require ruby2ruby # It works in this case but probably breaks r2r on a larger scale. class NilClass undef

Re: Camping and ruby2ruby

2007-09-27 Thread Jonas Pfenniger
2007/9/27, Gregor Schmidt [EMAIL PROTECTED]: Defining NilClass#method_missing for nothing is not too clever, for a large scale libary IMO. I'm not sure you understood, it is ruby2ruby who defined nil.method_missing. We can't start to support each and every hack a library will add to the Ruby

Re: Camping and ruby2ruby

2007-09-27 Thread John Beppu
On 9/27/07, Jonas Pfenniger [EMAIL PROTECTED] wrote: 2007/9/27, Gregor Schmidt [EMAIL PROTECTED]: Defining NilClass#method_missing for nothing is not too clever, for a large scale libary IMO. I'm not sure you understood, it is ruby2ruby who defined nil.method_missing. We can't start to

Re: Camping and ruby2ruby

2007-09-27 Thread Manfred Stienstra
On Sep 27, 2007, at 7:35 PM, John Beppu wrote: ^for this reason, you can't really use ruby2ruby in anything serious. nil.method_missing prevents a lot of exceptions from being thrown, and there's a lot of code out their that legitimately needs those exceptions to be thrown for correct

Re: Camping and ruby2ruby

2007-09-27 Thread Gregor Schmidt
Sorry, if I was misunderstood with saying Defining NilClass#method_missing for nothing is not too clever, for a large scale libary IMO. I was insulting ruby2ruby and not camping. So everthing is okay on this side. I solved my particular problem with the combination of caming and ruby2ruby and