>* I'm not aware of the particulars of the IronRuby or JRuby bridges, but in
>the case of RubyCocoa, there is a translation step to get from a Ruby method
>name to an Objective-Cselector. In MacRuby, there is no transation step.
>MacRuby method names are Objective-C selectors and vice versa. So,
Hello,
Both JRuby and IronRuby support translation from 'native' CamelCase method
names to the
lowercase_with_underscores naming convention in idiomatic Ruby.
They IronRuby guys call this "name-mangling":
http://ironruby.net/Documentation/.NET/Names
I had an expectation that this would be the ca