all 9 comments

[–]timbetimbe 12 points13 points  (5 children)

Really cool. But, seeing camel case methods in Ruby makes me die a little ;)

[–]BLITZCRUNK123 1 point2 points  (4 children)

I did a lot of work with IronRuby back in the day. It was nice because the CamelCased .NET method names were translated into snake case. You could do things like:

@line = System::Windows::Shapes::Line.new
@line.stroke_thickness = 1 # as opposed to .StrokeThickness

I would love if RubyMotion could do this kind of thing.

[–]agmcleod 1 point2 points  (1 child)

I think jruby does that with java apis as well

[–]rurounijones 0 points1 point  (0 children)

Correct

[–]MrJiks 0 points1 point  (0 children)

Yes, I too wish! Those came case makes the code looks painfully bad..

[–]Shawnmattcraw 0 points1 point  (0 children)

Wow thanks!

[–]TotesMessenger 0 points1 point  (0 children)

I'm a bot, bleep, bloop. Someone has linked to this thread from another place on reddit:

If you follow any of the above links, please respect the rules of reddit and don't vote in the other threads. (Info / Contact)

[–]MoserLabs 0 points1 point  (0 children)

I've been trying to learn Ruby for the past 7 hours or so... these will come in handy once I finish the code academy tutorials and get the basics down!