Ruby object oriented programming

  • ruby
  • object-oriented-programming
  • oop

20 February 2017

DESCRIPTION: Everything in Ruby is an object. Programming should be in an object-oriented way.

Programming Object Oriented Design Rules

  1. A class should have no more than 100 lines.
  2. Classes should do one thing.
  3. Methods should be no more than 5 lines.
  4. Pass no more than 5 params in an argument.
  5. Controller can only instantiate one object.
  6. Views can know about only 1 instance variable.

attr_reader determines which variables are allowed to be passed into the class.

Start the class with the first method

class Test
  def initialize
  end
end