What are some common programming mistakes made by Ruby developers, and how can they be avoided?
For example, requiring a gem and forgetting to require 'rubygems'.
(Inspired by Common programming mistakes for .NET developers to avoid?)
|
9
|
What are some common programming mistakes made by Ruby developers, and how can they be avoided? For example, requiring a gem and forgetting to (Inspired by Common programming mistakes for .NET developers to avoid?) |
|||
|
|
|
A few quickies, especially if you come from Java or something similar:
|
|||
|
|
|
Common mistake for former Java developers: instance variables vs. class instance variables.
Just remember that everything in Ruby is an object - including classes. So if all objects can have instance variables, classes can too. The way to tell whose instance variables you're talking about is by checking
the value of
|
|||
|
|
|
|
depending on what language you did last, there're lots of ruby vs. X comparos (these aren't the greatest examples but the general principle of understanding deltas in your main language vs. what you're picking up now is a big time saver) ruby v java http://colmsmyth.blogspot.com/2007/06/why-java-developers-dont-have-ruby-envy.html ruby v. python |
|||
|
|
|
|
may be this may help .... [link text][1] http://www.linuxtopia.org/online_books/programming_books/ruby_tutorial/Ruby_When_Trouble_Strikes_But_It_Doesnt_Work.html |
|||
|
|
|
|
Proper whitespace in ternary operator expressions Private class (not instance) variables silently aren't private
Trying to nest a Not understanding the difference between && and Those are what come to mind at the moment. |
|||
|
|
|
|
This should answer your question - Ruby Gotchas for newbies |
|||
|
|