Let's start by analyzing a Ruby on Rails project that I built for a client:
If you see the first line, I have a class called ApplicationController, which inherits from a class called ActionController::Base. The < symbol denotes inheritance in Ruby.
What this code essentially means is that, ApplicationController has access to all the methods available in ActionController::Base. In this sense, the attributes and behavior of ...