3
votes
sorting a ruby array of objects by an attribute that could be nil
To be fair, I'm not very familiar with Ruby, so take this as more of an algorithm idea rather than a code one... and rewrite the ?: operator as whatever Ruby has that's cleaner.
Can't you j …
0
votes
Syntax Checking or “Compiling” a Ruby on Rails Application
In general, the best way (I know of) to avoid this type of issue for dynamic/scripting languages is to move "logic" to methods/commands and write unit tests for them. Basically, anything that can f …
0
votes
Python Vs. Ruby for Metaprogramming
one that supports the metaprogramming hacks that just can't be done in a statically compiled language
I would love to find a language that allows some of …
0
votes
Debugging Ruby/Python/Groovy
Combining multiple actions into a single line is all well and good, when you can still look at the line in question and know that it's going to do exactly what you want it to do. The minute you get …
