Monthly Archives: May 2010
Class Instance Variables
Ruby has a unique concept, namely Class Instance Variables that is not common in other programming languages. Ruby has instance variables, class variables and class instance variables. Lets take a quick look at what I am talking about. Example 1 … Continue reading
Filed under Ruby, Ruby on Rails
Access Control in Ruby
After stumbling upon the access level modifiers for a long time, one day I decided to understand the ins-and-outs about the concept of public, protected and private in Ruby. Let’s understand the concept of Access Control in Ruby with the … Continue reading
Filed under Ruby, Ruby on Rails